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

/libcore/luni/src/main/java/java/util/concurrent/
H A DCountDownLatch.java14 * <p>A {@code CountDownLatch} is initialized with a given <em>count</em>.
22 * <p>A {@code CountDownLatch} is a versatile synchronization tool
24 * {@code CountDownLatch} initialized with a count of one serves as a
27 * #countDown}. A {@code CountDownLatch} initialized to <em>N</em>
31 * <p>A useful property of a {@code CountDownLatch} is that it
49 * CountDownLatch startSignal = new CountDownLatch(1);
50 * CountDownLatch doneSignal = new CountDownLatch(N);
63 * private final CountDownLatch startSigna
127 public class CountDownLatch { class
169 public CountDownLatch(int count) { method in class:CountDownLatch
[all...]

Completed in 26 milliseconds