Ejemplo n.º 1
0
 private void StartPinger()
 {
     _pingFailCount = 0;
     _pinger = new Pinger(Id);
     _pingTimer = new Timer(this.PingPeer, this, PingIntervalMilliseconds, PingIntervalMilliseconds);
 }
Ejemplo n.º 2
0
 private void StartCheckerForPings()
 {
     _lastPing = DateTime.Now.Ticks;
     _pingFailCount = 0;
     _pinger = new Pinger(Id);
     _pingTimer = new Timer(this.CheckForRecentPing, this, PingIntervalMilliseconds, PingIntervalMilliseconds);
 }