LinkedBlockingQueue.this

Creates a {@code LinkedBlockingQueue} with a capacity of {@link Integer#MAX_VALUE}, initially containing the elements of the given collection, added in traversal order of the collection's iterator.

@param c the collection of elements to initially contain @throws NullPointerException if the specified collection or any of its elements are null

  1. this()
  2. this(int capacity)
  3. this(Collection!(E) c)
    class LinkedBlockingQueue(E)
    this

Meta