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

/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingQueue.java22 * <p>{@code BlockingQueue} methods come in four forms, with different ways
63 * <p>A {@code BlockingQueue} does not accept {@code null} elements.
69 * <p>A {@code BlockingQueue} may be capacity bounded. At any given
72 * A {@code BlockingQueue} without any intrinsic capacity constraints always
75 * <p>{@code BlockingQueue} implementations are designed to be used
83 * <p>{@code BlockingQueue} implementations are thread-safe. All
93 * <p>A {@code BlockingQueue} does <em>not</em> intrinsically support
103 * Note that a {@code BlockingQueue} can safely be used with multiple
107 * private final BlockingQueue queue;
108 * Producer(BlockingQueue
151 public interface BlockingQueue<E> extends Queue<E> { interface in inherits:Queue
[all...]

Completed in 193 milliseconds