The methods of Java.Util.Concurrent.Locks.ICondition are listed below. For a list of all members, see the ICondition Members list.
Await()Causes the current thread to wait until it is signalled or Java.Lang.Thread.Interrupt. | ||
Await(long, Java.Util.Concurrent.TimeUnit)Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses. | ||
AwaitNanos(long)Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses. | ||
AwaitUninterruptibly()Causes the current thread to wait until it is signalled. | ||
AwaitUntil(Java.Util.Date)Causes the current thread to wait until it is signalled or interrupted, or the specified deadline elapses. | ||
Signal()Wakes up one waiting thread. | ||
SignalAll()Wakes up all waiting threads. |