c

akka.util

BoundedBlockingQueue

class BoundedBlockingQueue[E <: AnyRef] extends AbstractQueue[E] with BlockingQueue[E]

BoundedBlockingQueue wraps any Queue and turns the result into a BlockingQueue with a limited capacity.

Source
BoundedBlockingQueue.scala
Linear Supertypes
BlockingQueue[E], AbstractQueue[E], Queue[E], AbstractCollection[E], Collection[E], Iterable[E], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BoundedBlockingQueue
  2. BlockingQueue
  3. AbstractQueue
  4. Queue
  5. AbstractCollection
  6. Collection
  7. Iterable
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BoundedBlockingQueue(maxCapacity: Int, backing: Queue[E])

    maxCapacity

    - the maximum capacity of this Queue, needs to be > 0

    backing

    - the backing Queue

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to any2stringadd[BoundedBlockingQueue[E]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BoundedBlockingQueue[E], B)
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to ArrowAssoc[BoundedBlockingQueue[E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def add(arg0: E): Boolean
    Definition Classes
    AbstractQueue → Queue → AbstractCollection → Collection
  7. def addAll(arg0: Collection[_ <: E]): Boolean
    Definition Classes
    AbstractQueue → AbstractCollection → Collection
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clear(): Unit
    Definition Classes
    BoundedBlockingQueue → AbstractQueue → AbstractCollection → Collection
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def contains(e: AnyRef): Boolean
    Definition Classes
    BoundedBlockingQueue → BlockingQueue → AbstractCollection → Collection
  12. def containsAll(c: Collection[_]): Boolean
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  13. def drainTo(c: Collection[_ >: E], maxElements: Int): Int
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  14. def drainTo(c: Collection[_ >: E]): Int
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  15. def element(): E
    Definition Classes
    AbstractQueue → Queue
  16. def ensuring(cond: (BoundedBlockingQueue[E]) ⇒ Boolean, msg: ⇒ Any): BoundedBlockingQueue[E]
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to Ensuring[BoundedBlockingQueue[E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (BoundedBlockingQueue[E]) ⇒ Boolean): BoundedBlockingQueue[E]
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to Ensuring[BoundedBlockingQueue[E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): BoundedBlockingQueue[E]
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to Ensuring[BoundedBlockingQueue[E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): BoundedBlockingQueue[E]
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to Ensuring[BoundedBlockingQueue[E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def forEach(arg0: Consumer[_ >: E]): Unit
    Definition Classes
    Iterable
  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to StringFormat[BoundedBlockingQueue[E]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  27. def isEmpty(): Boolean
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def iterator(): Iterator[E]
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection → Iterable
  30. val lock: ReentrantLock
    Attributes
    protected
  31. val maxCapacity: Int
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  35. def offer(e: E, timeout: Long, unit: TimeUnit): Boolean
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  36. def offer(e: E): Boolean
    Definition Classes
    BoundedBlockingQueue → BlockingQueue → Queue
  37. def parallelStream(): Stream[E]
    Definition Classes
    Collection
  38. def peek(): E
    Definition Classes
    BoundedBlockingQueue → Queue
  39. def poll(): E
    Definition Classes
    BoundedBlockingQueue → Queue
  40. def poll(timeout: Long, unit: TimeUnit): E
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  41. def put(e: E): Unit
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  42. def remainingCapacity(): Int
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  43. def remove(e: AnyRef): Boolean
    Definition Classes
    BoundedBlockingQueue → BlockingQueue → AbstractCollection → Collection
  44. def remove(): E
    Definition Classes
    AbstractQueue → Queue
  45. def removeAll(c: Collection[_]): Boolean
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  46. def removeIf(arg0: Predicate[_ >: E]): Boolean
    Definition Classes
    Collection
  47. def retainAll(c: Collection[_]): Boolean
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  48. def size(): Int
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  49. def spliterator(): Spliterator[E]
    Definition Classes
    Collection → Iterable
  50. def stream(): Stream[E]
    Definition Classes
    Collection
  51. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  52. def take(): E
    Definition Classes
    BoundedBlockingQueue → BlockingQueue
  53. def toArray[X](a: Array[X]): Array[X]
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  54. def toArray(): Array[AnyRef]
    Definition Classes
    BoundedBlockingQueue → AbstractCollection → Collection
  55. def toString(): String
    Definition Classes
    AbstractCollection → AnyRef → Any
  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. def [B](y: B): (BoundedBlockingQueue[E], B)
    Implicit
    This member is added by an implicit conversion from BoundedBlockingQueue[E] to ArrowAssoc[BoundedBlockingQueue[E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from BlockingQueue[E]

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

Inherited by implicit conversion any2stringadd from BoundedBlockingQueue[E] to any2stringadd[BoundedBlockingQueue[E]]

Inherited by implicit conversion StringFormat from BoundedBlockingQueue[E] to StringFormat[BoundedBlockingQueue[E]]

Inherited by implicit conversion Ensuring from BoundedBlockingQueue[E] to Ensuring[BoundedBlockingQueue[E]]

Inherited by implicit conversion ArrowAssoc from BoundedBlockingQueue[E] to ArrowAssoc[BoundedBlockingQueue[E]]

Ungrouped