Concurrent.Condition
enum ConditionSourcecase Condition(java.util.concurrent.locks.Condition)A wrapper around a Java Condition.
Definitions
Causes the current thread to wait until it is signalled or interrupted.
Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time(nanos) elapses. The method returns an estimate of the number of nanoseconds remaining to wait given the supplied nanosTimeout value upon return, or a value less than or equal to zero if it timed out.
Wakes up one waiting thread.