Exemple #1
0
 internal ActorRef(ActorPath path)
 {
     this.path = path;
 }
Exemple #2
0
 public ActorPath(ActorPath parent, string name)
 {
     this.parent = parent;
     this.name   = name;
 }
Exemple #3
0
 internal ActorLocalRef(Actor actor, Mailbox mailbox, ActorPath path)
     : base(path)
 {
     this.actor   = actor;
     this.mailbox = mailbox;
 }