ActorRefFactorySharedActorSelection Method (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.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static ActorSelection ActorSelection(
string path,
ActorSystem system,
ActorRef lookupRoot
)
Public Shared Function ActorSelection (
path As String,
system As ActorSystem,
lookupRoot As ActorRef
) As ActorSelection
public:
static ActorSelection^ ActorSelection(
String^ path,
ActorSystem^ system,
ActorRef^ lookupRoot
)
static member ActorSelection :
path : string *
system : ActorSystem *
lookupRoot : ActorRef -> ActorSelection
Parameters
- path
- Type: SystemString
[Missing <param name="path"/> documentation for "M:Akka.Actor.ActorRefFactoryShared.ActorSelection(System.String,Akka.Actor.ActorSystem,Akka.Actor.ActorRef)"]
- system
- Type: Akka.ActorActorSystem
[Missing <param name="system"/> documentation for "M:Akka.Actor.ActorRefFactoryShared.ActorSelection(System.String,Akka.Actor.ActorSystem,Akka.Actor.ActorRef)"]
- lookupRoot
- Type: Akka.ActorActorRef
[Missing <param name="lookupRoot"/> documentation for "M:Akka.Actor.ActorRefFactoryShared.ActorSelection(System.String,Akka.Actor.ActorSystem,Akka.Actor.ActorRef)"]
Return Value
Type:
ActorSelection[Missing <returns> documentation for "M:Akka.Actor.ActorRefFactoryShared.ActorSelection(System.String,Akka.Actor.ActorSystem,Akka.Actor.ActorRef)"]
See Also