Ejemplo n.º 1
0
 protected void Send(string value, string type)
 {
     if (!string.IsNullOrEmpty(value) && !string.IsNullOrEmpty(type) && preValue_ != value)
     {
         preValue_ = value;
         preType_  = type;
         Synchronizer.Send(this, value, type);
     }
 }
Ejemplo n.º 2
0
        IEnumerator HeartBeat()
        {
            yield return(new WaitForEndOfFrame());

            for (;;)
            {
                if (isLocal && !string.IsNullOrEmpty(preValue_) && !string.IsNullOrEmpty(preType_))
                {
                    Synchronizer.Send(this, preValue_, preType_);
                }
                yield return(new WaitForSeconds(heartBeatDuration));
            }
        }