SubscriberAsyncTParameter Delegate

Async delegate of a subscriber without return value.

Definition

Namespace: SecretNest.MessageBus
Assembly: SecretNest.MessageBus.DirectRelease (in SecretNest.MessageBus.DirectRelease.dll) Version: 1.0.0
C#
public delegate Task SubscriberAsync<TParameter>(
	TParameter argument,
	CancellationToken cancellationToken
)

Parameters

argument  TParameter
Argument.
cancellationToken  CancellationToken
The token to monitor for cancellation requests.

Type Parameters

TParameter
The type of the parameter.

Return Value

Task
A task that represents the asynchronous operation.

See Also