diff --git a/akka-core/src/main/scala/actor/ActorRegistry.scala b/akka-core/src/main/scala/actor/ActorRegistry.scala index 7ca40d1a82..9e0b1cba08 100644 --- a/akka-core/src/main/scala/actor/ActorRegistry.scala +++ b/akka-core/src/main/scala/actor/ActorRegistry.scala @@ -6,92 +6,123 @@ package se.scalablesolutions.akka.actor import se.scalablesolutions.akka.util.Logging -import scala.collection.mutable.{ListBuffer, HashMap} +import scala.collection.mutable.ListBuffer import scala.reflect.Manifest +import java.util.concurrent.ConcurrentHashMap + /** - * Registry holding all actor instances, mapped by class, the actor's uuid and the actor's id field (which can be set - * by user-code). + * Registry holding all Actor instances in the whole system. + * Mapped by: + *