Ejemplo n.º 1
0
 public ActorRef AsChildOf(ActorRef parent)
 {
     if(!IsRelative) {
         throw new Exception("Address isn't relative");
     }
     return new ActorRef(parent.Path.Concat(Path.Skip(1)).ToArray(), parent.IsRelative, parent.Scheme);
 }
Ejemplo n.º 2
0
 public ActorRef RelativeTo(ActorRef parent)
 {
     return null;
 }