/// <summary>
 /// When this node is the winner(master), it send final election msg to other machines
 /// </summary>
 public void SendElectionFinalMsg(NodeInfo target)
 {
     //var proxy1 = XmlRpcProxyGen.Create<IConnectionProxy>();
     _proxy.Url = target.GetFullUrl();
     _proxy.SetMasterNode(_node.GetIpAndPort());
 }