コード例 #1
0
ファイル: ActorRef.cs プロジェクト: stjordanis/Aktores
 internal ActorRef(ActorPath path)
 {
     this.path = path;
 }
コード例 #2
0
ファイル: ActorPath.cs プロジェクト: stjordanis/Aktores
 public ActorPath(ActorPath parent, string name)
 {
     this.parent = parent;
     this.name   = name;
 }
コード例 #3
0
 internal ActorLocalRef(Actor actor, Mailbox mailbox, ActorPath path)
     : base(path)
 {
     this.actor   = actor;
     this.mailbox = mailbox;
 }