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