Uses of Class
com.azure.data.cosmos.ChangeFeedOptions
-
Packages that use ChangeFeedOptions Package Description com.azure.data.cosmos This package provides Rx interfaces for interacting with Azure Cosmos DB.com.azure.data.cosmos.sync This package provides synchronous interfaces for interacting with Azure Cosmos DB. -
-
Uses of ChangeFeedOptions in com.azure.data.cosmos
Methods in com.azure.data.cosmos that return ChangeFeedOptions Modifier and Type Method Description ChangeFeedOptions
ChangeFeedOptions. maxItemCount(Integer maxItemCount)
Sets the maximum number of items to be returned in the enumeration operation.ChangeFeedOptions
ChangeFeedOptions. partitionKey(PartitionKey partitionkey)
Sets the partition key used to identify the current request's target partition.ChangeFeedOptions
ChangeFeedOptions. properties(Map<String,Object> properties)
Sets the properties used to identify the request token.ChangeFeedOptions
ChangeFeedOptions. requestContinuation(String requestContinuation)
Sets the request continuation token.ChangeFeedOptions
ChangeFeedOptions. startDateTime(OffsetDateTime startDateTime)
Sets the zoned date time (exclusive) to start looking for changes after.ChangeFeedOptions
ChangeFeedOptions. startFromBeginning(boolean startFromBeginning)
Set whether change feed should start from beginning (true) or from current (false).Methods in com.azure.data.cosmos with parameters of type ChangeFeedOptions Modifier and Type Method Description Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryChangeFeedItems(ChangeFeedOptions changeFeedOptions)
Query for documents in a items in a container After subscription the operation will be performed.Constructors in com.azure.data.cosmos with parameters of type ChangeFeedOptions Constructor Description ChangeFeedOptions(ChangeFeedOptions options)
-
Uses of ChangeFeedOptions in com.azure.data.cosmos.sync
Methods in com.azure.data.cosmos.sync with parameters of type ChangeFeedOptions Modifier and Type Method Description Iterator<FeedResponse<CosmosItemProperties>>
CosmosSyncContainer. queryChangeFeedItems(ChangeFeedOptions changeFeedOptions)
Query change feed items iterator.
-