Akka.Routing.ConsistentRoutee.ToStringWithFullAddress C# (CSharp) Method

ToStringWithFullAddress() private method

private ToStringWithFullAddress ( ActorPath path ) : string
path ActorPath
return string
        private string ToStringWithFullAddress(ActorPath path)
        {
            if (string.IsNullOrEmpty(path.Address.Host) || !path.Address.Port.HasValue)
                return path.ToStringWithAddress(SelfAddress);
            return path.ToString();
        }
    }