object MailboxSelector extends Serializable

Source
Props.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MailboxSelector
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def bounded(capacity: Int): MailboxSelector

    A mailbox with a max capacity after which new messages are dropped (passed to deadletters).

    A mailbox with a max capacity after which new messages are dropped (passed to deadletters).

    capacity

    The maximum number of messages in the mailbox before new messages are dropped

  2. def default(): MailboxSelector

    Scala API: The default mailbox is SingleConsumerOnlyUnboundedMailbox

  3. def defaultMailbox(): MailboxSelector

    Java API: The default mailbox is SingleConsumerOnlyUnboundedMailbox

  4. def fromConfig(path: String): MailboxSelector

    Select a mailbox from the config file using an absolute config path.

    Select a mailbox from the config file using an absolute config path.

    This is a power user settings default or bounded should be preferred unless you know what you are doing.