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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DArrayBlockingQueue.java85 public class ArrayBlockingQueue<E> extends AbstractQueue<E> class in inherits:AbstractQueue,BlockingQueue,java.io.Serializable
218 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
224 public ArrayBlockingQueue(int capacity) { method in class:ArrayBlockingQueue
229 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
238 public ArrayBlockingQueue(int capacity, boolean fair) { method in class:ArrayBlockingQueue
248 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
263 public ArrayBlockingQueue(int capacity, boolean fair, method in class:ArrayBlockingQueue
959 * Iterator for ArrayBlockingQueue.
1013 final ReentrantLock lock = ArrayBlockingQueue.this.lock;
1022 final int takeIndex = ArrayBlockingQueue
[all...]

Completed in 294 milliseconds