Removing ActorRef.isRunning - replaced in full by isShutdown, if it returns true the actor is forever dead, if it returns false, it might be (race)

This commit is contained in:
Viktor Klang 2011-10-03 19:43:45 +02:00
parent a1593c0419
commit 0f049d67e6
12 changed files with 22 additions and 54 deletions

View file

@ -232,8 +232,6 @@ private[akka] class RoutedActorRef(val routedProps: RoutedProps, val address: St
@volatile
private var running: Boolean = true
def isRunning: Boolean = running
def isShutdown: Boolean = !running
def stop() {