Exemple #1
0
 private void InitializeStepTimer()
 {
     Heartbeat = new Timer((state) =>
     {
         Step();
         ConnectionHeartbeat.Step();
     }, null, 0, Hook.StepTime);
 }
Exemple #2
0
        private void InitializeStepTimer()
        {
            Heartbeat = new Timer((state) =>
            {
                if (Processing)
                {
                    return;
                }

                Step();
                ConnectionHeartbeat.Step();
            }, null, 0, Hook.StepTime);
            Disposables.Add(Heartbeat);
        }
Exemple #3
0
 public virtual void ConnectionHeartbeat(C context, ConnectionHeartbeat mystruct)
 {
 }