示例#1
0
 internal ActorRef(ActorPath path)
 {
     this.path = path;
 }
示例#2
0
 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;
 }