Пример #1
0
        private void Handle(Start msg)
        {
            PongParentActor = Context.ActorOf(Context.DI().Props <PongParentActor>());
            PingParentActor = Context.ActorOf(Context.DI().Props <PingParentActor>());

            PingParentActor.Tell("Hello", PongParentActor);
        }
 private void Handle(Start msg)
 {
     PingParentActor.Tell("World");
 }