Akka.Cluster.Sharding.Tests.ClusterShardinLeavingSpec.ShardLocations.ShardLocations C# (CSharp) Method

ShardLocations() public method

public ShardLocations ( ) : System
return System
            public ShardLocations()
            {
                Receive<GetLocations>(_ => Sender.Tell(_locations));
                Receive<Locations>(l => _locations = l);
            }
        }
ClusterShardinLeavingSpec.ShardLocations