Click or drag to resize
ActorRefFactoryShared Class
This class contains implementations originally found in Akka´s trait ActorRefFactory in ActorRefProvider.scala https://github.com/akka/akka/blob/master/akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala#L180 ActorRefFactory corresponds to that trait, but since it is an interface it cannot contain any code, hence this class.
Inheritance Hierarchy
SystemObject
  Akka.ActorActorRefFactoryShared

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public static class ActorRefFactoryShared
Methods
  NameDescription
Public methodStatic memberActorSelection(ActorPath, ActorSystem)
Construct an ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally). No attempt is made to verify the existence of any part of the supplied path, it is recommended to send a message and gather the replies in order to resolve the matching set of actors.
Public methodStatic memberActorSelection(String, ActorSystem, ActorRef)
Construct an ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally). No attempt is made to verify the existence of any part of the supplied path, it is recommended to send a message and gather the replies in order to resolve the matching set of actors.
Top
See Also