IEventProcessor.ProcessEventsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Asynchronously processes the specified context and messages. This method is called when there are new messages in the Event Hubs stream. Make sure to checkpoint only when you are finished processing all the events in each batch.
public System.Threading.Tasks.Task ProcessEventsAsync (Microsoft.ServiceBus.Messaging.PartitionContext context, System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.EventData> messages);
abstract member ProcessEventsAsync : Microsoft.ServiceBus.Messaging.PartitionContext * seq<Microsoft.ServiceBus.Messaging.EventData> -> System.Threading.Tasks.Task
Public Function ProcessEventsAsync (context As PartitionContext, messages As IEnumerable(Of EventData)) As Task
Parameters
- context
- PartitionContext
Ownership information for the partition on which this processor instance works.
- messages
- IEnumerable<EventData>
A batch of Event Hubs events.
Returns
The task that indicates that ProcessEventsAsync(PartitionContext, IEnumerable<EventData>) is complete.
Applies to
Azure SDK for .NET