Beispiel #1
0
 void Poll()
 {
     while (!stopRequested)
     {
         TimeoutManager.PopTimeout();
     }
 }
Beispiel #2
0
 void Poll()
 {
     while (!stopRequested)
     {
         try
         {
             TimeoutManager.PopTimeout();
         }
         catch (Exception ex)
         {
             //intentionally swallow here to avoid this bringing the entire endpoint down.
             //remove this when our sattelite support is introduced
             Logger.ErrorFormat("Failed to pop timeouts - " + ex);
         }
     }
 }