Ejemplo n.º 1
0
 public int handler5(stopchild msg)
 {
     var t = Context.PendingReturn();
     Context.StopActor(msg.child, () =>
     {
         t.Return(0);
     });
     return 0;
 }
Ejemplo n.º 2
0
 public int handler5(stopchild msg)
 {
     Context.StopActor(msg.child);
     return 0;
 }