LinkedBlockingDeque.this

Creates a {@code LinkedBlockingDeque} with the given (fixed) capacity and fairness policy.

@param capacity the capacity of this deque @param fairness true means threads waiting on the deque should be served as if waiting in a FIFO request queue @throws IllegalArgumentException if {@code capacity} is less than 1

  1. this()
  2. this(bool fairness)
  3. this(int capacity)
  4. this(int capacity, bool fairness)
    class LinkedBlockingDeque(E)
    this
    (,)
  5. this(Collection!E c)
  6. this(E[] c)

Meta