| 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
)
Function AwaitSignalAsync (
signal As String
) As Task
Parameters
- signal
- Type: SystemString
Name of the signal to await.
Return Value
Type:
TaskA task intended to be awaited for in the client code.
See Also