sealed class Terminated extends Signal
Ordering
- Alphabetic
- By Inheritance
Inherited
- Terminated
- Signal
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- def equals(obj: Any): Boolean
- Definition Classes
- Terminated → AnyRef → Any
- def getRef(): [Void]
Java API: The actor that was watched and got terminated
- def hashCode(): Int
- Definition Classes
- Terminated → AnyRef → Any
- val ref: [Nothing]
- def toString(): String
- Definition Classes
- Terminated → AnyRef → Any
Lifecycle signal that is fired when an Actor that was watched has terminated. Watching is performed by invoking the akka.actor.typed.scaladsl.ActorContext.watch. The DeathWatch service is idempotent, meaning that registering twice has the same effect as registering once. Registration does not need to happen before the Actor terminates, a notification is guaranteed to arrive after both registration and termination have occurred. This message is also sent when the watched actor is on a node that has been removed from the cluster when using Akka Cluster.