class ConcurrentLinkedQueue[E <: AnyRef] extends AbstractQueue[E] with Queue[E] with Serializable

Annotations
@SerialVersionUID()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConcurrentLinkedQueue
  2. Serializable
  3. AbstractQueue
  4. Queue
  5. AbstractCollection
  6. Collection
  7. Iterable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ConcurrentLinkedQueue(c: Collection[_ <: E])
  2. new ConcurrentLinkedQueue()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def add(e: E): Boolean
  5. def addAll(c: Collection[_ <: E]): Boolean
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clear(): Unit
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def contains(_o: Any): Boolean
  10. def containsAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  11. def element(): E
    Definition Classes
    AbstractQueueQueue
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def forEach(action: Consumer[_ >: E]): Unit
    Definition Classes
    ConcurrentLinkedQueueIterable
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def isEmpty(): Boolean
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def iterator(): Iterator[E]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def offer(e: E): Boolean
    Definition Classes
    ConcurrentLinkedQueueQueue
  25. def parallelStream(): Stream[E]
    Definition Classes
    Collection
  26. def peek(): E
    Definition Classes
    ConcurrentLinkedQueueQueue
  27. def poll(): E
    Definition Classes
    ConcurrentLinkedQueueQueue
  28. def remove(_o: Any): Boolean
  29. def remove(): E
    Definition Classes
    AbstractQueueQueue
  30. def removeAll(c: Collection[_]): Boolean
  31. def removeIf(filter: Predicate[_ >: E]): Boolean
    Definition Classes
    ConcurrentLinkedQueueCollection
  32. def retainAll(c: Collection[_]): Boolean
  33. def size(): Int
  34. def spliterator(): Spliterator[E]

    From the Java 8 documentation: The default implementation should usually be overridden.

    From the Java 8 documentation: The default implementation should usually be overridden. The spliterator returned by the default implementation has poor splitting capabilities, is unsized, and does not report any spliterator characteristics. Implementing classes can nearly always provide a better implementation.

    Definition Classes
    ConcurrentLinkedQueueCollectionIterable
  35. def stream(): Stream[E]
    Definition Classes
    Collection
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def toArray[T <: AnyRef](a: Array[T]): Array[T]
  38. def toArray(): Array[AnyRef]
  39. def toString(): String
    Definition Classes
    ConcurrentLinkedQueueAbstractCollection → AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from AbstractQueue[E]

Inherited from Queue[E]

Inherited from AbstractCollection[E]

Inherited from Collection[E]

Inherited from Iterable[E]

Inherited from AnyRef

Inherited from Any

Ungrouped