Beispiel #1
0
 /// <summary>
 /// Shutdowns the dispatcher
 /// </summary>
 internal static void Shutdown()
 {
     if (m_oneSecondTimer != null)
     {
         m_oneSecondTimer.Stop();
         m_oneSecondTimer = null;
     }
 }
Beispiel #2
0
        /// <summary>
        /// Shutdowns the dispatcher.
        /// </summary>
        internal static void Shutdown()
        {
            if (m_oneSecondTimer == null)
            {
                return;
            }

            m_oneSecondTimer.Stop();
            m_oneSecondTimer = null;
        }