예제 #1
0
 public async Task UpdateCheckpointAsync(string partitionId, Checkpoint checkpoint, CancellationToken cancellationToken)
 {
     await PutWithRetry(partitionId, checkpoint, cancellationToken).ConfigureAwait(false);
 }
예제 #2
0
 private async Task CheckpointAsync(Checkpoint checkpoint)
 {
     await this.checkpointMananger.UpdateCheckpointAsync(this.PartitionId, checkpoint, this.CancellationToken).ConfigureAwait(false);
 }