Uses of Class
com.azure.cosmos.models.CosmosChangeFeedRequestOptions
Package
Description
This package provides interfaces for interacting with Azure Cosmos DB.
This package provides rest contracts for interacting with Azure Cosmos DB SQL APIs.
-
Uses of CosmosChangeFeedRequestOptions in com.azure.cosmos
Modifier and TypeMethodDescription<T> CosmosPagedFlux<T>
CosmosAsyncContainer.queryChangeFeed
(CosmosChangeFeedRequestOptions options, Class<T> classType) Query for items in the change feed of the current container using theCosmosChangeFeedRequestOptions
.<T> CosmosPagedIterable<T>
CosmosContainer.queryChangeFeed
(CosmosChangeFeedRequestOptions options, Class<T> classType) Query for items in the change feed of the current container using theCosmosChangeFeedRequestOptions
. -
Uses of CosmosChangeFeedRequestOptions in com.azure.cosmos.models
Modifier and TypeMethodDescriptionCosmosChangeFeedRequestOptions.allVersionsAndDeletes()
Changes the change feed mode so that the change feed will contain events for creations, deletes as well as all intermediary snapshots for updates.CosmosChangeFeedRequestOptions.createForProcessingFromBeginning
(FeedRange feedRange) Creates a newCosmosChangeFeedRequestOptions
instance to start processing change feed items from the beginning of the change feedCosmosChangeFeedRequestOptions.createForProcessingFromContinuation
(String continuation) Creates a newCosmosChangeFeedRequestOptions
instance to start processing change feed items from a previous continuationCosmosChangeFeedRequestOptions.createForProcessingFromNow
(FeedRange feedRange) Creates a newCosmosChangeFeedRequestOptions
instance to start processing change feed items from the current time - so only events for all future changes will be retrievedCosmosChangeFeedRequestOptions.createForProcessingFromPointInTime
(Instant pointInTime, FeedRange feedRange) Creates a newCosmosChangeFeedRequestOptions
instance to start processing change feed items from a certain point in timeCosmosChangeFeedRequestOptions.fullFidelity()
Deprecated.CosmosChangeFeedRequestOptions.setDiagnosticsThresholds
(CosmosDiagnosticsThresholds operationSpecificThresholds) Allows overriding the diagnostic thresholds for a specific operation.CosmosChangeFeedRequestOptions.setExcludedRegions
(List<String> excludeRegions) List of regions to exclude for the request/retries.CosmosChangeFeedRequestOptions.setMaxItemCount
(int maxItemCount) Sets the maximum number of items to be returned in the enumeration operation.CosmosChangeFeedRequestOptions.setMaxPrefetchPageCount
(int maxPrefetchPageCount) Sets the maximum number of pages that will be prefetched from the backend asynchronously in the background.CosmosChangeFeedRequestOptions.setThroughputControlGroupName
(String throughputControlGroupName) Set the throughput control group name.
allVersionsAndDeletes()
instead.