Java java.util.concurrent LinkedBlockingDeque fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent LinkedBlockingDeque fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent LinkedBlockingDeque.

The text is from its open source code.

Constructor

LinkedBlockingDeque(int capacity)
Creates a LinkedBlockingDeque with the given (fixed) capacity.
LinkedBlockingDeque(Collection c)
Creates a LinkedBlockingDeque with a capacity of Integer#MAX_VALUE , initially containing the elements of the given collection, added in traversal order of the collection's iterator.
LinkedBlockingDeque()
Creates a LinkedBlockingDeque with a capacity of Integer#MAX_VALUE .

Method

booleanadd(E e)
Inserts the specified element at the end of this deque unless it would violate capacity restrictions.
Epoll()
voidput(E e)
voidputFirst(E e)
intsize()
Returns the number of elements in this deque.
Etake()
EtakeFirst()