Akka.Cluster.Tools.Tests.MultiNode.ClusterClient.ClusterClientSpecConfig.ClusterClientSpecConfig C# (CSharp) Method

ClusterClientSpecConfig() public method

public ClusterClientSpecConfig ( ) : System
return System
        public ClusterClientSpecConfig()
        {
            Client = Role("client");
            First = Role("first");
            Second = Role("second");
            Third = Role("third");
            Fourth = Role("fourth");

            CommonConfig = ConfigurationFactory.ParseString(@"
                akka.loglevel = INFO
                akka.actor.provider = ""Akka.Cluster.ClusterActorRefProvider, Akka.Cluster""
                akka.remote.log-remote-lifecycle-events = off
                akka.cluster.auto-down-unreachable-after = 0s
                akka.cluster.client.heartbeat-interval = 1s
                akka.cluster.client.acceptable-heartbeat-pause = 3s
            ").WithFallback(MultiNodeClusterSpec.ClusterConfig());

            TestTransport = true;
        }
    }
ClusterClientSpecConfig