Example usage for Java java.util.concurrent ConcurrentLinkedDeque fields, constructors, methods, implement or subclass
The text is from its open source code.
ConcurrentLinkedDeque() Constructs an empty deque. |
boolean | add(E e) Inserts the specified element at the tail of this deque. |
boolean | addAll(Collection extends E> c) Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator. |
void | addFirst(E e) Inserts the specified element at the front of this deque. |
E | getLast() |
boolean | isEmpty() Returns true if this collection contains no elements. |
void | push(E e) |
int | size() Returns the number of elements in this deque. |
Stream | stream() Returns a sequential Stream with this collection as its source. |