final case class DeadLetter(message: Any, sender: ActorRef, recipient: ActorRef) extends AllDeadLetters with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- DeadLetter
- Serializable
- Product
- Equals
- AllDeadLetters
- WrappedMessage
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- val message: Any
- Definition Classes
- → → WrappedMessage
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val recipient: ActorRef
- Definition Classes
- → AllDeadLetters
- val sender: ActorRef
- Definition Classes
- → AllDeadLetters
When a message is sent to an Actor that is terminated before receiving the message, it will be sent as a DeadLetter to the ActorSystem's EventStream.
When this message was sent without a sender ActorRef,
sender
will besystem.deadLetters
.