Click or drag to resize

IGlobalCacheAwaitSignalAsync Method

Asynchronously wait for a given signal to be raised. The returned task will not complete until the given signal is raised using the RaiseSignal(String) method. When called from an asynchronous method, this method allows synchronization of DataConveyer processing without thread blocking.

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
Task AwaitSignalAsync(
	string signal
)

Parameters

signal
Type: SystemString
Name of the signal to await.

Return Value

Type: Task
A task intended to be awaited for in the client code.
See Also