akka.actor
Class Terminated

java.lang.Object
  extended by akka.actor.Terminated
All Implemented Interfaces:
PossiblyHarmful, java.io.Serializable, scala.Equals, scala.Product

public class Terminated
extends java.lang.Object
implements PossiblyHarmful, scala.Product, scala.Serializable

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.

See Also:
Serialized Form

Method Summary
 ActorRef actor()
           
 boolean addressTerminated()
           
 boolean existenceConfirmed()
           
 ActorRef getActor()
           
 boolean getAddressTerminated()
           
 boolean getExistenceConfirmed()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Method Detail

actor

public ActorRef actor()

existenceConfirmed

public boolean existenceConfirmed()

addressTerminated

public boolean addressTerminated()

getActor

public ActorRef getActor()

getExistenceConfirmed

public boolean getExistenceConfirmed()

getAddressTerminated

public boolean getAddressTerminated()