| IGlobalCacheAwaitSignal Method |
Wait for a given signal to be raised before returning. This method blocks the current thread until the given signal is raised.
Therefore, special care must be taken to assure that the
RaiseSignal(String) method is called on another thread, so that
a deadlock condition is avoided.
Namespace:
Mavidian.DataConveyer.Orchestrators
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax void AwaitSignal(
string signal
)
Sub AwaitSignal (
signal As String
)
Parameters
- signal
- Type: SystemString
Name of the signal to await.
See Also