/// <summary>
        /// get accept response from a host
        /// </summary>
        /// <param name="fromIpAndPort"></param>
        /// <param name="timestamp"></param>
        public void GetAcceptResponse_RA(string fromIpAndPort, string timestamp)
        {
            var myIp = _module.LocalNodeInfo.GetIpAndPort();

            _module.RemoveFromAcceptList(fromIpAndPort);

            //check if all accept messages received. if yes, start accessing to resource
            if (_module.IsGotAllOk())
            {
                LogHelper.WriteStatus("RESET. GOT ALL AT: " + myIp);
                //Debug.WriteLine("RESET. GOT ALL AT: " + myIp);
                //ManualResetEvent _isAcceptMessagesFinished.Set() in Node
                _module.Client.HasGotAllMessagesBack.Set();
            }

            //Clock: recv handle
            _module.Clock.ReceiveEventHandle(int.Parse(timestamp));
        }