Uses of Class
com.microsoft.azure.eventprocessorhost.Checkpoint
-
-
Uses of Checkpoint in com.microsoft.azure.eventprocessorhost
Methods in com.microsoft.azure.eventprocessorhost that return types with arguments of type Checkpoint Modifier and Type Method Description CompletableFuture<Checkpoint>
ICheckpointManager. getCheckpoint(String partitionId)
Get the checkpoint data associated with the given partition.CompletableFuture<Checkpoint>
InMemoryCheckpointManager. getCheckpoint(String partitionId)
Methods in com.microsoft.azure.eventprocessorhost with parameters of type Checkpoint Modifier and Type Method Description CompletableFuture<Void>
PartitionContext. checkpoint(Checkpoint checkpoint)
Writes the position of the provided Checkpoint instance to the checkpoint store via the checkpoint manager.CompletableFuture<Void>
ICheckpointManager. updateCheckpoint(CompleteLease lease, Checkpoint checkpoint)
Update the checkpoint in the store with the offset/sequenceNumber in the provided checkpoint.CompletableFuture<Void>
InMemoryCheckpointManager. updateCheckpoint(CompleteLease lease, Checkpoint checkpoint)
Constructors in com.microsoft.azure.eventprocessorhost with parameters of type Checkpoint Constructor Description Checkpoint(Checkpoint source)
Create a checkpoint which is a duplicate of the given checkpoint.
-