Java.Util.Concurrent.Locks.ICondition: Method Members

The methods of Java.Util.Concurrent.Locks.ICondition are listed below. For a list of all members, see the ICondition Members list.

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.