Akka.Cluster.Tests.MultiNode.Routing.ClusterConsistentHashingGroupSpec.FullAddress C# (CSharp) 메소드

FullAddress() 보호된 메소드

Fills in the self address for local ActorRef
protected FullAddress ( IActorRef actorRef ) : Akka.Actor.Address
actorRef IActorRef
리턴 Akka.Actor.Address
        protected Address FullAddress(IActorRef actorRef)
        {
            if (string.IsNullOrEmpty(actorRef.Path.Address.Host) || !actorRef.Path.Address.Port.HasValue)
                return Cluster.SelfAddress;
            return actorRef.Path.Address;
        }