IEventProcessor.CloseAsync(PartitionContext, CloseReason) Method

Definition

Called when the ownership of partition moves to a different node for load-balancing purpose, or when the host is shutting down. Called in response to UnregisterProcessorAsync(Lease, CloseReason).

public System.Threading.Tasks.Task CloseAsync (Microsoft.ServiceBus.Messaging.PartitionContext context, Microsoft.ServiceBus.Messaging.CloseReason reason);
abstract member CloseAsync : Microsoft.ServiceBus.Messaging.PartitionContext * Microsoft.ServiceBus.Messaging.CloseReason -> System.Threading.Tasks.Task
Public Function CloseAsync (context As PartitionContext, reason As CloseReason) As Task

Parameters

context
PartitionContext

Partition ownership information for the partition on which this processor instance works. You can call CheckpointAsync() to checkpoint progress in the processing of messages from Event Hub streams.

Returns

A task indicating that the Close operation is complete.

Applies to