EventHubConsumerGroup.RegisterProcessorAsync Méthode

Définition

Surcharges

RegisterProcessorAsync<T>(Lease, ICheckpointManager)

Version asynchrone de RegisterProcessor<T>(Lease, ICheckpointManager).

RegisterProcessorAsync<T>(Lease, ICheckpointManager, EventProcessorOptions)

Version asynchrone de RegisterProcessor<T>(Lease, ICheckpointManager, EventProcessorOptions).

RegisterProcessorAsync<T>(Lease, ICheckpointManager)

public System.Threading.Tasks.Task RegisterProcessorAsync<T> (Microsoft.ServiceBus.Messaging.Lease lease, Microsoft.ServiceBus.Messaging.ICheckpointManager checkpointManager) where T : Microsoft.ServiceBus.Messaging.IEventProcessor;
member this.RegisterProcessorAsync : Microsoft.ServiceBus.Messaging.Lease * Microsoft.ServiceBus.Messaging.ICheckpointManager -> System.Threading.Tasks.Task (requires 'T :> Microsoft.ServiceBus.Messaging.IEventProcessor)
Public Function RegisterProcessorAsync(Of T As IEventProcessor) (lease As Lease, checkpointManager As ICheckpointManager) As Task

Paramètres de type

T

Implémentation de IEventProcessor.

Paramètres

lease
Lease

Informations de partition.

checkpointManager
ICheckpointManager

Points de contrôle le décalage de la partition spécifiée quand CheckpointAsync(EventData) est appelée.

Retours

Une instance de tâche qui représente l'opération asynchrone.

S’applique à

RegisterProcessorAsync<T>(Lease, ICheckpointManager, EventProcessorOptions)

public System.Threading.Tasks.Task RegisterProcessorAsync<T> (Microsoft.ServiceBus.Messaging.Lease lease, Microsoft.ServiceBus.Messaging.ICheckpointManager checkpointManager, Microsoft.ServiceBus.Messaging.EventProcessorOptions processorOptions) where T : Microsoft.ServiceBus.Messaging.IEventProcessor;
member this.RegisterProcessorAsync : Microsoft.ServiceBus.Messaging.Lease * Microsoft.ServiceBus.Messaging.ICheckpointManager * Microsoft.ServiceBus.Messaging.EventProcessorOptions -> System.Threading.Tasks.Task (requires 'T :> Microsoft.ServiceBus.Messaging.IEventProcessor)
Public Function RegisterProcessorAsync(Of T As IEventProcessor) (lease As Lease, checkpointManager As ICheckpointManager, processorOptions As EventProcessorOptions) As Task

Paramètres de type

T

Implémentation de IEventProcessor.

Paramètres

lease
Lease

Informations de partition.

checkpointManager
ICheckpointManager

Points de contrôle le décalage de la partition spécifiée quand CheckpointAsync(EventData) est appelée.

Retours

Retourne Task.

Remarques

Pour effectuer une création plus avancée IEventProcessor , implémentez une IEventProcessorFactory classe qui vous permet de contrôler la façon dont les processeurs d’événements sont créés.

S’applique à