final case class SuppressedDeadLetter(message: DeadLetterSuppression, sender: ActorRef, recipient: ActorRef) extends AllDeadLetters with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- SuppressedDeadLetter
- Serializable
- Product
- Equals
- AllDeadLetters
- WrappedMessage
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SuppressedDeadLetter(message: DeadLetterSuppression, sender: ActorRef, recipient: ActorRef)
Value Members
- val message: DeadLetterSuppression
- Definition Classes
- → → WrappedMessage
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val recipient: ActorRef
- Definition Classes
- → AllDeadLetters
- val sender: ActorRef
- Definition Classes
- → AllDeadLetters
Similar to DeadLetter with the slight twist of NOT being logged by the default dead letters listener. Messages which end up being suppressed dead letters are internal messages for which ending up as dead-letter is both expected and harmless.
It is possible to subscribe to suppressed dead letters on the ActorSystem's EventStream explicitly.