akka.actor.mailbox.filebased.filequeue

QueueCollection

Related Doc: package filequeue

class QueueCollection extends AnyRef

Annotations
@deprecated
Deprecated

(Since version 2.3) durable mailboxes are superseded by akka-persistence

Source
QueueCollection.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. QueueCollection
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueueCollection(queueFolder: String, settings: FileBasedMailboxSettings, log: LoggingAdapter)

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 information
    This member is added by an implicit conversion from QueueCollection to any2stringadd[QueueCollection] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (QueueCollection, B)

    Implicit information
    This member is added by an implicit conversion from QueueCollection to ArrowAssoc[QueueCollection] 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(key: String, item: Array[Byte]): Boolean

  7. def add(key: String, item: Array[Byte], expiry: Int): Boolean

    Add an item to a named queue.

    Add an item to a named queue. Will not return until the item has been synchronously added and written to the queue journal file.

    returns

    true if the item was added; false if the server is shutting down

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def confirmRemove(key: String, xid: Int): Unit

  11. def currentBytes: Long

  12. def currentItems: Long

  13. def delete(name: String): Unit

  14. def dumpConfig(key: String): Array[String]

  15. def ensuring(cond: (QueueCollection) ⇒ Boolean, msg: ⇒ Any): QueueCollection

    Implicit information
    This member is added by an implicit conversion from QueueCollection to Ensuring[QueueCollection] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (QueueCollection) ⇒ Boolean): QueueCollection

    Implicit information
    This member is added by an implicit conversion from QueueCollection to Ensuring[QueueCollection] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): QueueCollection

    Implicit information
    This member is added by an implicit conversion from QueueCollection to Ensuring[QueueCollection] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): QueueCollection

    Implicit information
    This member is added by an implicit conversion from QueueCollection to Ensuring[QueueCollection] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flush(key: String): Unit

  23. def flushAllExpired(): Int

  24. def flushExpired(name: String): Int

  25. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from QueueCollection to StringFormat[QueueCollection] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  26. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def loadQueues(): Unit

  30. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  33. val queueHits: Counter

  34. val queueMisses: Counter

  35. def queueNames: List[String]

  36. def receive(key: String): Option[Array[Byte]]

  37. def remove(key: String, timeout: Int, transaction: Boolean, peek: Boolean)(f: (Option[QItem]) ⇒ Unit): Unit

    Retrieve an item from a queue and pass it to a continuation.

    Retrieve an item from a queue and pass it to a continuation. If no item is available within the requested time, or the server is shutting down, None is passed.

  38. def shutdown: Unit

    Shutdown this queue collection.

    Shutdown this queue collection. All actors are asked to exit, and any future queue requests will fail.

  39. def stats(key: String): Array[(String, String)]

  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. val totalAdded: Counter

  43. def unremove(key: String, xid: Int): Unit

  44. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. def [B](y: B): (QueueCollection, B)

    Implicit information
    This member is added by an implicit conversion from QueueCollection to ArrowAssoc[QueueCollection] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from QueueCollection to any2stringadd[QueueCollection]

Inherited by implicit conversion StringFormat from QueueCollection to StringFormat[QueueCollection]

Inherited by implicit conversion Ensuring from QueueCollection to Ensuring[QueueCollection]

Inherited by implicit conversion ArrowAssoc from QueueCollection to ArrowAssoc[QueueCollection]

Ungrouped