akka.actor.mailbox.filebased.filequeue

QueueCollection

class QueueCollection extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. QueueCollection
  2. AnyRef
  3. Any
  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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    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. final def eq(arg0: AnyRef): Boolean

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

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

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

  19. def flushAllExpired(): Int

  20. def flushExpired(name: String): Int

  21. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  24. def loadQueues(): Unit

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

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

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

    Definition Classes
    AnyRef
  28. val queueHits: Counter

  29. val queueMisses: Counter

  30. def queueNames: List[String]

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

  32. 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.

  33. def shutdown: Unit

    Shutdown this queue collection.

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

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

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

    Definition Classes
    AnyRef
  36. def toString(): String

    Definition Classes
    AnyRef → Any
  37. val totalAdded: Counter

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

  39. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped