예제 #1
0
        /// <summary>
        /// Fires the timer tick event to notify the subscribers.
        /// </summary>
        internal static void UpdateOnOneSecondTick()
        {
            if (Closed)
            {
                return;
            }

            // Fires the event for subscribers
            TimerTick?.ThreadSafeInvoke(null, EventArgs.Empty);
        }