MessageBusExecuteOnceAsyncTParameter(String, TParameter, MessageBusPublisherOptionsTParameter, NullableCancellationToken) Method

Asynchronously executes as publisher specified by message name with the argument provided.

Definition

Namespace: SecretNest.MessageBus
Assembly: SecretNest.MessageBus.DirectRelease (in SecretNest.MessageBus.DirectRelease.dll) Version: 1.0.0
C#
public override Task ExecuteOnceAsync<TParameter>(
	string messageName,
	TParameter argument,
	MessageBusPublisherOptions<TParameter>? options = null,
	CancellationToken? cancellationToken = null
)

Parameters

messageName  String
The name of this message.
argument  TParameter
Argument.
options  MessageBusPublisherOptionsTParameter  (Optional)
The instance of publisher options. Default is .
cancellationToken  NullableCancellationToken  (Optional)
The token to monitor for cancellation requests. The default value is .

Type Parameters

TParameter
The type of the parameter.

Return Value

Task
A task that represents the asynchronous operation.

See Also