| IGlobalCacheAwaitCondition Method |
Wait for a given condition to be satisfied before returning. This method blocks the current thread until the provided function evaluates
to true. Therefore, special care must be taken when defining the function (condition parameter) to avoid a deadlock condition.
Namespace:
Mavidian.DataConveyer.Orchestrators
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax void AwaitCondition(
Func<IGlobalCache, bool> condition
)
Sub AwaitCondition (
condition As Func(Of IGlobalCache, Boolean)
)
Parameters
- condition
- Type: SystemFuncIGlobalCache, Boolean
A predicate expected to return true once the condition is met.
See Also