Akka.Cluster.Tests.MultiNode.ClusterDeathWatchSpecConfig.ClusterDeathWatchSpecConfig C# (CSharp) Метод

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

public ClusterDeathWatchSpecConfig ( ) : System
Результат System
        public ClusterDeathWatchSpecConfig()
        {
            _first = Role("first");
            _second = Role("second");
            _third = Role("third");
            _fourth = Role("fourth");
            _fifth = Role("fifth");
            DeployOn(_fourth, @"/hello.remote = ""@first@""");
            CommonConfig = ConfigurationFactory.ParseString(@"akka.cluster.publish-stats-interval = 25s
                akka.actor.debug.lifecycle = true")
                .WithFallback(MultiNodeLoggingConfig.LoggingConfig)
                .WithFallback(DebugConfig(true))
                .WithFallback(MultiNodeClusterSpec.ClusterConfigWithFailureDetectorPuppet());
        }
    }
ClusterDeathWatchSpecConfig