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

/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingQueue.java23 * <p>{@code BlockingQueue} methods come in four forms, with different ways
33 * <caption>Summary of BlockingQueue methods</caption>
64 * <p>A {@code BlockingQueue} does not accept {@code null} elements.
70 * <p>A {@code BlockingQueue} may be capacity bounded. At any given
73 * A {@code BlockingQueue} without any intrinsic capacity constraints always
76 * <p>{@code BlockingQueue} implementations are designed to be used
84 * <p>{@code BlockingQueue} implementations are thread-safe. All
94 * <p>A {@code BlockingQueue} does <em>not</em> intrinsically support
104 * Note that a {@code BlockingQueue} can safely be used with multiple
108 * private final BlockingQueue queu
152 public interface BlockingQueue<E> extends Queue<E> { interface in inherits:Queue
[all...]

Completed in 254 milliseconds