Barrier::SignalAndWait Method (TimeSpan)

.NET Framework (current version)
 

Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well, using a TimeSpan object to measure the time interval.

Namespace:   System.Threading
Assembly:  System (in System.dll)

public:
bool SignalAndWait(
	TimeSpan timeout
)

Parameters

timeout
Type: System::TimeSpan

A TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 milliseconds to wait indefinitely.

Return Value

Type: System::Boolean

true if all other participants reached the barrier; otherwise, false.

Exception Condition
ObjectDisposedException

The current instance has already been disposed.

ArgumentOutOfRangeException

timeoutis a negative number other than -1 milliseconds, which represents an infinite time-out, or it is greater than 32,767.

InvalidOperationException

The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: