Akka.Tests.Routing.RoutingSpec.RouterSupervisorSpec.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!"); });
                }
            }
RoutingSpec.RouterSupervisorSpec.KillableActor