EventProcessorClient.StartProcessing(CancellationToken) Method
Definition
Signals the EventProcessorClient to begin processing events. Should this method be called while the processor is running, no action is taken.
public override void StartProcessing (System.Threading.CancellationToken cancellationToken = default);
override this.StartProcessing : System.Threading.CancellationToken -> unit
Public Overrides Sub StartProcessing (Optional cancellationToken As CancellationToken = Nothing)
Parameters
- cancellationToken
- CancellationToken
A CancellationToken instance to signal the request to cancel the start operation. This won't affect the EventProcessorClient once it starts running.
Exceptions
Occurs when this EventProcessorClient instance is already closed.
Occurs when this method is invoked without ProcessEventAsync or ProcessErrorAsync set.