Java.Util.Concurrent.Locks.ICondition Members

The members of Java.Util.Concurrent.Locks.ICondition are listed below.

Public Methods

Await()
Causes the current thread to wait until it is signalled or Java.Lang.Thread.Interrupt.
Await(long, Java.Util.Concurrent.TimeUnit) : bool
Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses.
AwaitNanos(long) : 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) : bool
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.