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

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

Determine if a Watch/Unwatch message must be handled by the RemoteWatcher actor, or sent to this RemoteActorRef.
public IsWatchIntercepted ( IActorRef watchee, IActorRef watcher ) : bool
watchee IActorRef The actor being watched.
watcher IActorRef The actor watching.
Результат bool
        public bool IsWatchIntercepted(IActorRef watchee, IActorRef watcher)
        {
            return !watcher.Equals(RemoteProvider.RemoteWatcher) && watchee.Equals(this);
        }