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