Пример #1
0
 static void Resume(IActorRef actorRef)
 {
     actorRef.Match()
     .With <ActorRefWithCell>(l => l.Resume());
 }
Пример #2
0
 static void Suspend(IActorRef actorRef)
 {
     actorRef.Match()
     .With <ActorRefWithCell>(l => l.Suspend());
 }