Akka.Cluster.Tools.Tests.MultiNode.ClusterClient.ClusterClientSpec.TestService.TestService C# (CSharp) Метод

TestService() публичный Метод

public TestService ( IActorRef testActorRef ) : System
testActorRef IActorRef
Результат System
            public TestService(IActorRef testActorRef)
            {
                ReceiveAny(msg =>
                {
                    testActorRef.Forward(msg);
                    Sender.Tell(msg.ToString() + "-ack");
                });
            }
        }
ClusterClientSpec.TestService