Removing ActorRegistry object, UntypedActor object, introducing akka.actor.Actors for the Java API

This commit is contained in:
Viktor Klang 2011-01-04 13:24:28 +01:00
parent accbfd0192
commit e17b4f4f52
38 changed files with 320 additions and 331 deletions

View file

@ -132,7 +132,7 @@ trait MessageDispatcher extends MailboxFactory with Logging {
val i = uuids.iterator
while(i.hasNext()) {
val uuid = i.next()
ActorRegistry.actorFor(uuid) match {
Actor.registry.actorFor(uuid) match {
case Some(actor) => actor.stop
case None =>
log.slf4j.error("stopAllLinkedActors couldn't find linked actor: " + uuid)