VirtualUser WaitForSynchronizationPoint Method (String, TimeSpan)C# API
Wait for a named synchronization point to be set.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public void WaitForSynchronizationPoint(
	string id,
	TimeSpan timeout
)

Parameters

id
Type: System String
the name of the synchronization point to wait for
timeout
Type: System TimeSpan
the maximum time to wait before throwing an exception
Exceptions

ExceptionCondition
TimeoutException thrown if the synchronization point has not been set before the timeout period elapses.
Remarks

This method will block until either the named synchronization point is set, or the timeout period has elapsed. If the timeout period elapses before the synchronization point is set then an exception will be thrown.
See Also