Akka.Cluster.Tools.Tests.Singleton.ClusterSingletonManagerSpec.ClusterSingletonManager_should_let_the_proxy_messages_to_the_singleton_in_a_6_node_cluster C# (CSharp) Метод

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

        public void ClusterSingletonManager_should_let_the_proxy_messages_to_the_singleton_in_a_6_node_cluster()
        {
            ClusterSingletonManager_should_startup_6_node_cluster();
            Within(TimeSpan.FromSeconds(60), () =>
            {
                VerifyProxyMsg(_first, _first, Msg);
                VerifyProxyMsg(_first, _second, Msg);
                VerifyProxyMsg(_first, _third, Msg);
                VerifyProxyMsg(_first, _fourth, Msg);
                VerifyProxyMsg(_first, _fifth, Msg);
                VerifyProxyMsg(_first, _sixth, Msg);
            });
        }