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

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

Initializes a new instance of the RemoteSystemDaemon class.
public RemoteSystemDaemon ( ActorSystemImpl system, ActorPath path, IInternalActorRef parent, IActorRef terminator, ILoggingAdapter log ) : System
system ActorSystemImpl The system.
path ActorPath The path.
parent IInternalActorRef The parent.
terminator IActorRef
log ILoggingAdapter
Результат System
        public RemoteSystemDaemon(ActorSystemImpl system, ActorPath path, IInternalActorRef parent,IActorRef terminator, ILoggingAdapter log)
            : base(system.Provider, path, parent, log)
        {
            _terminator = terminator;
            _system = system;
            AddressTerminatedTopic.Get(system).Subscribe(this);
        }