final case class Terminated extends AutoReceivedMessage with PossiblyHarmful with DeadLetterSuppression with NoSerializationVerificationNeeded with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Terminated
- Product
- Equals
- NoSerializationVerificationNeeded
- DeadLetterSuppression
- PossiblyHarmful
- AutoReceivedMessage
- Serializable
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- val actor: ActorRef
- val addressTerminated: Boolean
- val existenceConfirmed: Boolean
- def getActor(): ActorRef
- Annotations
- @BeanProperty()
- def getAddressTerminated(): Boolean
- Annotations
- @BeanProperty()
- def getExistenceConfirmed(): Boolean
- Annotations
- @BeanProperty()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
When Death Watch is used, the watcher will receive a Terminated(watched) message when watched is terminated. Terminated message can't be forwarded to another actor, since that actor might not be watching the subject. Instead, if you need to forward Terminated to another actor you should send the information in your own message.