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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBlockingQueue.java52 * <p>{@code BlockingQueue} methods come in four forms, with different ways
62 * <caption>Summary of BlockingQueue methods</caption>
93 * <p>A {@code BlockingQueue} does not accept {@code null} elements.
99 * <p>A {@code BlockingQueue} may be capacity bounded. At any given
102 * A {@code BlockingQueue} without any intrinsic capacity constraints always
105 * <p>{@code BlockingQueue} implementations are designed to be used
113 * <p>{@code BlockingQueue} implementations are thread-safe. All
123 * <p>A {@code BlockingQueue} does <em>not</em> intrinsically support
133 * Note that a {@code BlockingQueue} can safely be used with multiple
137 * private final BlockingQueue queu
181 public interface BlockingQueue<E> extends Queue<E> { interface in inherits:Queue
[all...]

Completed in 2488 milliseconds