final case class Dropped(message: Any, reason: String, sender: ActorRef, recipient: ActorRef) extends AllDeadLetters with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Dropped
- 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
Value Members
- val message: Any
- Definition Classes
- → → WrappedMessage
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reason: String
- val recipient: ActorRef
- Definition Classes
- → AllDeadLetters
- val sender: ActorRef
- Definition Classes
- → AllDeadLetters
Envelope that is published on the eventStream wrapped in akka.actor.DeadLetter for every message that is dropped due to overfull queues or routers with no routees.
When this message was sent without a sender ActorRef,
sender
will beActorRef.noSender
, i.e.null
.