/// <summary> /// Updates the checkpoint using the given information for the associated partition and consumer group in the chosen storage service. /// </summary> /// /// <param name="checkpoint">The checkpoint containing the information to be stored.</param> /// public abstract Task UpdateCheckpointAsync(Checkpoint checkpoint);
/// <summary> /// Updates the checkpoint using the given information for the associated partition and consumer group in the chosen storage service. /// </summary> /// /// <param name="checkpoint">The checkpoint containing the information to be stored.</param> /// <param name="cancellationToken">A <see cref="CancellationToken"/> instance to signal the request to cancel the operation.</param> /// public abstract Task UpdateCheckpointAsync(Checkpoint checkpoint, CancellationToken cancellationToken);