Akka.Cluster.Tests.MultiNode.Routing.ClusterConsistentHashingRouterSpec.A_cluster_router_with_consistent_hashing_pool_must_select_destination_based_on_hash_key C# (CSharp) Method

A_cluster_router_with_consistent_hashing_pool_must_select_destination_based_on_hash_key() protected method

        protected void A_cluster_router_with_consistent_hashing_pool_must_select_destination_based_on_hash_key()
        {
            RunOn(() =>
            {
                Router1.Tell(new ConsistentHashableEnvelope("A", "a"));
                var destinationA = ExpectMsg<IActorRef>();
                Router1.Tell(new ConsistentHashableEnvelope("AA", "a"));
                ExpectMsg(destinationA);
            }, _config.First);

            EnterBarrier("after-3");
        }