Uses of Class
com.microsoft.azure.eventprocessorhost.CompleteLease
-
-
Uses of CompleteLease in com.microsoft.azure.eventprocessorhost
Methods in com.microsoft.azure.eventprocessorhost that return types with arguments of type CompleteLease Modifier and Type Method Description CompletableFuture<CompleteLease>ILeaseManager. getLease(String partitionId)Returns the lease info for the given partition..CompletableFuture<CompleteLease>InMemoryLeaseManager. getLease(String partitionId)Methods in com.microsoft.azure.eventprocessorhost with parameters of type CompleteLease Modifier and Type Method Description CompletableFuture<Boolean>ILeaseManager. acquireLease(CompleteLease lease)Acquire the lease on the desired partition for this EventProcessorHost.CompletableFuture<Boolean>InMemoryLeaseManager. acquireLease(CompleteLease lease)CompletableFuture<Void>ILeaseManager. deleteLease(CompleteLease lease)Delete the lease info for a partition from the store.CompletableFuture<Void>InMemoryLeaseManager. deleteLease(CompleteLease lease)CompletableFuture<Void>ILeaseManager. releaseLease(CompleteLease lease)Give up a lease currently held by this host.CompletableFuture<Void>InMemoryLeaseManager. releaseLease(CompleteLease lease)CompletableFuture<Boolean>ILeaseManager. renewLease(CompleteLease lease)Renew a lease currently held by this host instance.CompletableFuture<Boolean>InMemoryLeaseManager. renewLease(CompleteLease lease)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)CompletableFuture<Boolean>ILeaseManager. updateLease(CompleteLease lease)Update the store with the information in the provided lease.CompletableFuture<Boolean>InMemoryLeaseManager. updateLease(CompleteLease lease)Constructors in com.microsoft.azure.eventprocessorhost with parameters of type CompleteLease Constructor Description CompleteLease(CompleteLease source)Create a Lease by duplicating the given Lease.
-