Condition Methods
The Condition type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
|
|
Equals(System.Object) | (Inherited from Object.) |
|
|
Finalize | (Inherited from Object.) |
|
|
GetHashCode | (Inherited from Object.) |
|
|
GetType | (Inherited from Object.) |
|
|
IsAwaiting |
Determines whether this instance is awaiting. checks if any process is waiting for the specified signal
|
|
|
MemberwiseClone | (Inherited from Object.) |
|
|
Notify |
Notifies this instance.
use Notify - to awake one of the waiting processes
|
|
|
NotifyAll |
Notifies all.
use NotifyAll - to awake all of the waiting processes
|
|
|
ToString | (Inherited from Object.) |
|
|
Wait(Object) |
Wait until a condition is fulfilled
|
|
|
Wait(Object, Int32) |
Waits the specified calling monitor until a timeout expires.
|
|
|
Wait(Object, TimeSpan) |
Releases the lock on a monitor and blocks the current thread until
it receives Notification / Signal or a specified amount of time elapses.
|

