Uses of Class
com.azure.cosmos.models.FeedResponse
Packages that use FeedResponse
Package
Description
This package provides interfaces for interacting with Azure Cosmos DB.
This package provides utilities such as
CosmosPagedFlux and CosmosPagedIterable for interacting with Azure Cosmos DB SQL APIs.-
Uses of FeedResponse in com.azure.cosmos
Methods in com.azure.cosmos that return FeedResponseModifier and TypeMethodDescription<T> FeedResponse<T>CosmosContainer.readMany(List<CosmosItemIdentity> itemIdentityList, CosmosReadManyRequestOptions options, Class<T> classType) Reads many documents.<T> FeedResponse<T>CosmosContainer.readMany(List<CosmosItemIdentity> itemIdentityList, Class<T> classType) Reads many documents.<T> FeedResponse<T>CosmosContainer.readMany(List<CosmosItemIdentity> itemIdentityList, String sessionToken, Class<T> classType) Reads many documents.Methods in com.azure.cosmos that return types with arguments of type FeedResponseModifier and TypeMethodDescription<T> Mono<FeedResponse<T>>CosmosAsyncContainer.readMany(List<CosmosItemIdentity> itemIdentityList, CosmosReadManyRequestOptions requestOptions, Class<T> classType) Reads many documents.<T> Mono<FeedResponse<T>>CosmosAsyncContainer.readMany(List<CosmosItemIdentity> itemIdentityList, Class<T> classType) Reads many documents.<T> Mono<FeedResponse<T>>CosmosAsyncContainer.readMany(List<CosmosItemIdentity> itemIdentityList, String sessionToken, Class<T> classType) Reads many documents. -
Uses of FeedResponse in com.azure.cosmos.util
Methods in com.azure.cosmos.util that return types with arguments of type FeedResponseModifier and TypeMethodDescriptionCosmosPagedFlux.byPage()Gets aFluxofFeedResponsestarting at the first page.CosmosPagedFlux.byPage(int preferredPageSize) Gets aFluxofFeedResponsestarting at the first page requesting each page to contain a number of elements equal to the preferred page size.Gets aFluxofFeedResponsebeginning at the page identified by the given continuation token.Gets aFluxofFeedResponsebeginning at the page identified by the given continuation token requesting each page to contain the number of elements equal to the preferred page size.Method parameters in com.azure.cosmos.util with type arguments of type FeedResponseModifier and TypeMethodDescriptionCosmosPagedFlux.handle(Consumer<FeedResponse<T>> newFeedResponseConsumer) Handle for invoking "side-effects" on each FeedResponse returned by CosmosPagedFluxCosmosPagedIterable.handle(Consumer<FeedResponse<T>> feedResponseConsumer) Handle for invoking "side-effects" on each FeedResponse returned by CosmosPagedIterable