VirtualUser WaitForSynchronizationPoint Method (String, Int64)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,
	long timeoutMilliseconds
)

Parameters

id
Type: System String
the name of the synchronization point to wait for
timeoutMilliseconds
Type: System Int64
the maximum time in milliseconds 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