Akka.Actor.ActorCell.SendTerminated C# (CSharp) 메소드

SendTerminated() 개인적인 메소드

private SendTerminated ( bool ifLocal, IInternalActorRef watcher ) : void
ifLocal bool
watcher IInternalActorRef
리턴 void
        private void SendTerminated(bool ifLocal, IInternalActorRef watcher)
        {
            if (((IActorRefScope)watcher).IsLocal == ifLocal && !watcher.Equals(Parent))
            {
                watcher.SendSystemMessage(new DeathWatchNotification(Self, true, false));
            }
        }