Akka.Cluster.ClusterRemoteWatcher.TakeOverResponsibility C# (CSharp) Method

TakeOverResponsibility() private method

When a cluster node is added this class takes over the responsibility for watchees on that node already handled by base RemoteWatcher.
private TakeOverResponsibility ( Akka.Actor.Address address ) : void
address Akka.Actor.Address
return void
        private void TakeOverResponsibility(Address address)
        {
            if (WatchingNodes.Contains(address))
            {
                Log.Debug("Cluster is taking over responsibility of node: {0}", address);
                UnwatchNode(address);
            }
        }
    }