PartitionContext.CheckpointAsync Method

Definition

Overloads

CheckpointAsync()

Checkpoints progress of an Event Hubs message stream. Make sure to call this method once all the messages in a batch are processed.

CheckpointAsync(EventData)

Checkpoints progress of an Event Hubs message stream with the specified offset.

CheckpointAsync()

Checkpoints progress of an Event Hubs message stream. Make sure to call this method once all the messages in a batch are processed.

public System.Threading.Tasks.Task CheckpointAsync ();
abstract member CheckpointAsync : unit -> System.Threading.Tasks.Task
override this.CheckpointAsync : unit -> System.Threading.Tasks.Task
Public Function CheckpointAsync () As Task

Returns

The task representing the asynchronous operation.

Applies to

CheckpointAsync(EventData)

Checkpoints progress of an Event Hubs message stream with the specified offset.

public System.Threading.Tasks.Task CheckpointAsync (Microsoft.ServiceBus.Messaging.EventData data);
abstract member CheckpointAsync : Microsoft.ServiceBus.Messaging.EventData -> System.Threading.Tasks.Task
override this.CheckpointAsync : Microsoft.ServiceBus.Messaging.EventData -> System.Threading.Tasks.Task
Public Function CheckpointAsync (data As EventData) As Task

Parameters

data
EventData

An EventData object to use for checkpointing the state of the stream.

Returns

Returns Task.

Applies to