InternalActorRefGetChild Method |
Obtain a child given the paths element to that actor, by possibly traversing the actor tree or
looking it up at some provider-specific location.
A path element of ".." signifies the parent, a trailing "" element must be disregarded.
If the requested path does not exist, returns
Nobody.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic abstract ActorRef GetChild(
IEnumerable<string> name
)
Public MustOverride Function GetChild (
name As IEnumerable(Of String)
) As ActorRef
public:
virtual ActorRef^ GetChild(
IEnumerable<String^>^ name
) abstract
abstract GetChild :
name : IEnumerable<string> -> ActorRef
Parameters
- name
- Type: System.Collections.GenericIEnumerableString
The path elements.
Return Value
Type:
ActorRefThe
ActorRef, or if the requested path does not exist, returns
Nobody.
See Also