Exemplo n.º 1
0
 static void Resume(IActorRef actorRef)
 {
     actorRef.Match()
     .With <ActorRefWithCell>(l => l.Resume());
 }
Exemplo n.º 2
0
 static void Suspend(IActorRef actorRef)
 {
     actorRef.Match()
     .With <ActorRefWithCell>(l => l.Suspend());
 }