コード例 #1
0
ファイル: ActorCell.cs プロジェクト: romankagan/akka.net
 /// <summary>
 /// TBD
 /// </summary>
 /// <param name="path">TBD</param>
 /// <returns>TBD</returns>
 public ActorSelection ActorSelection(ActorPath path)
 {
     return(ActorRefFactoryShared.ActorSelection(path, _systemImpl));
 }
コード例 #2
0
 /// <summary>
 ///     Construct an <see cref="Akka.Actor.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.
 /// </summary>
 /// <param name="actorPath">The actor path.</param>
 /// <returns>ActorSelection.</returns>
 public ActorSelection ActorSelection(string actorPath)
 {
     return(ActorRefFactoryShared.ActorSelection(actorPath, this, Provider.RootGuardian));
 }
コード例 #3
0
ファイル: ActorCell.cs プロジェクト: romankagan/akka.net
 /// <summary>
 /// TBD
 /// </summary>
 /// <param name="path">TBD</param>
 /// <returns>TBD</returns>
 public ActorSelection ActorSelection(string path)
 {
     return(ActorRefFactoryShared.ActorSelection(path, _systemImpl, Self));
 }
コード例 #4
0
 /// <summary>
 ///     Construct an  <see cref="Akka.Actor.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.
 /// </summary>
 /// <param name="actorPath">The actor path.</param>
 /// <returns>ActorSelection.</returns>
 public ActorSelection ActorSelection(ActorPath actorPath)
 {
     return(ActorRefFactoryShared.ActorSelection(actorPath, this));
 }