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

RemoteActorRef() приватный Метод

Initializes a new instance of the RemoteActorRef class.
private RemoteActorRef ( Akka.Remote.RemoteTransport remote, Akka.Actor.Address localAddressToUse, ActorPath path, IInternalActorRef parent, Props props, Akka.Actor.Deploy deploy ) : System
remote Akka.Remote.RemoteTransport The remote.
localAddressToUse Akka.Actor.Address The local address to use.
path ActorPath The path.
parent IInternalActorRef The parent.
props Props The props.
deploy Akka.Actor.Deploy The deploy.
Результат System
        internal RemoteActorRef(RemoteTransport remote, Address localAddressToUse, ActorPath path, IInternalActorRef parent,
            Props props, Deploy deploy)
        {
            Remote = remote;
            LocalAddressToUse = localAddressToUse;
            _path = path;
            _parent = parent;
            _props = props;
            _deploy = deploy;
        }