object MailboxSelector extends Serializable
- Source
- Props.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MailboxSelector
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- 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
- def default(): MailboxSelector
Scala API: The default mailbox is SingleConsumerOnlyUnboundedMailbox
- def defaultMailbox(): MailboxSelector
Java API: The default mailbox is SingleConsumerOnlyUnboundedMailbox
- 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.