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

/libcore/luni/src/main/java/java/util/concurrent/
H A DArrayBlockingQueue.java51 public class ArrayBlockingQueue<E> extends AbstractQueue<E> class in inherits:AbstractQueue,BlockingQueue,java.io.Serializable
202 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
208 public ArrayBlockingQueue(int capacity) { method in class:ArrayBlockingQueue
213 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
222 public ArrayBlockingQueue(int capacity, boolean fair) { method in class:ArrayBlockingQueue
232 * Creates an {@code ArrayBlockingQueue} with the given (fixed)
247 public ArrayBlockingQueue(int capacity, boolean fair, method in class:ArrayBlockingQueue
971 * Iterator for ArrayBlockingQueue.
1025 final ReentrantLock lock = ArrayBlockingQueue.this.lock;
1034 final int takeIndex = ArrayBlockingQueue
[all...]

Completed in 79 milliseconds