public class Monitor.Cond
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
void |
await()
The thread that invokes this method will block until
signalled.
|
void |
signal()
Signal (and continue) the first thread blocked in the
condition.
|
int |
waiting()
Number of threads waiting in this Cond.
|