Searched defs:CountDownLatch (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DCountDownLatch.java15 * <p>A {@code CountDownLatch} is initialized with a given <em>count</em>.
23 * <p>A {@code CountDownLatch} is a versatile synchronization tool
25 * {@code CountDownLatch} initialized with a count of one serves as a
28 * #countDown}. A {@code CountDownLatch} initialized to <em>N</em>
32 * <p>A useful property of a {@code CountDownLatch} is that it
50 * CountDownLatch startSignal = new CountDownLatch(1);
51 * CountDownLatch doneSignal = new CountDownLatch(N);
64 * private final CountDownLatch startSigna
128 public class CountDownLatch { class
170 public CountDownLatch(int count) { method in class:CountDownLatch
[all...]

Completed in 282 milliseconds