Akka.Cluster.Tests.Routing.ClusterRouterSupervisorSpec.RestartableActor.PostRestart C# (CSharp) Method

PostRestart() protected method

protected PostRestart ( Exception reason ) : void
reason System.Exception
return void
            protected override void PostRestart(Exception reason)
            {
                base.PostRestart(reason);
                TestActor.Tell("restarted");
            }
ClusterRouterSupervisorSpec.RestartableActor