Home | History | Annotate | Download | only in concurrent

Lines Matching defs:await

45  * The {@link #await await} methods block until the current count reaches
48 * {@link #await await} return immediately. This is a one-shot phenomenon
55 * simple on/off latch, or gate: all threads invoking {@link #await await}
64 * thread from proceeding past an {@link #await await} until all
88 * doneSignal.await(); // wait for all to finish
101 * startSignal.await();
114 * will be able to pass through await. (When threads must repeatedly
126 * doneSignal.await(); // wait for all to finish
152 * {@code await()} in another thread.
196 * before threads can pass through {@link #await}
231 public void await() throws InterruptedException {
276 public boolean await(long timeout, TimeUnit unit)