Akka.Cluster.Tests.Routing.ClusterRouterSupervisorSpec.KillableActor.KillableActor C# (CSharp) Метод

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

public KillableActor ( IActorRef testActor ) : System
testActor IActorRef
Результат System
            public KillableActor(IActorRef testActor)
            {
                TestActor = testActor;
                Receive<string>(s => s == "go away", s =>
                {
                    throw new ArgumentException("Goodbye then!");
                });
            }
        }
ClusterRouterSupervisorSpec.KillableActor