Akka.Remote.EndpointRegistry.AddressForWriter C# (CSharp) Метод

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

public AddressForWriter ( IActorRef writer ) : Akka.Actor.Address
writer IActorRef
Результат Akka.Actor.Address
        public Address AddressForWriter(IActorRef writer)
        {
            // Needs to return null if the key is not in the dictionary, instead of throwing.
            Address value;
            return _writableToAddress.TryGetValue(writer, out value) ? value : null;
        }