Removing RemoteActorSystemMessage.Stop in favor of the sexier Terminate message

This commit is contained in:
Viktor Klang 2011-10-17 19:31:59 +02:00
parent 379515771b
commit fa1a2610a7
3 changed files with 5 additions and 5 deletions

View file

@ -273,7 +273,7 @@ private[akka] case class RemoteActorRef private[akka] (
synchronized {
if (running) {
running = false
postMessageToMailbox(RemoteActorSystemMessage.Stop, None)
postMessageToMailbox(Terminate, None)
}
}
}