| Terminated Constructor |
Initializes a new instance of the
Terminated class.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public Terminated(
IActorRef actorRef,
bool existenceConfirmed,
bool addressTerminated
)
new :
actorRef : IActorRef *
existenceConfirmed : bool *
addressTerminated : bool -> Terminated
Parameters
- actorRef
- Type: Akka.ActorIActorRef
the watched actor that terminated - existenceConfirmed
- Type: SystemBoolean
is false when the Terminated message was not sent directly from the watched actor, but derived from another source, such as when watching a non-local ActorRef, which might not have been resolved - addressTerminated
- Type: SystemBoolean
the Terminated message was derived from that the remote node hosting the watched actor was detected as unreachable
See Also