How reliable are .net timers? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:31:17Z http://stackoverflow.com/feeds/question/897108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/897108/how-reliable-are-net-timers 3 How reliable are .net timers? macleojw 2009-05-22T09:42:47Z 2009-06-03T10:44:31Z <p>I'm looking at using a System.Timers.Timer in a windows service. I would like to know how reliable and accurate they are. In particular: </p> <ol> <li>Are there any guarantees about how often they will run? </li> <li>What happens when the processor or memory are overloaded? Will the ElapsedEventArgs.SignalTime always be accurate under such circumstances?</li> <li>If a timer is run for a long time, what happens when corrections are made to the system time to take into account inaccuracies in the system clock?</li> </ol> <p>Update: Thanks for the answers so far. I was hoping to get more specific answers to the three issues that I detailed in my original question.</p> http://stackoverflow.com/questions/897108/how-reliable-are-net-timers/897127#897127 0 Answer by Konstantinos for How reliable are .net timers? Konstantinos 2009-05-22T09:48:35Z 2009-05-22T09:48:35Z <p>I use a sleeping(<em>Thread.Sleep(int)</em>) value while in a loop for my windows service tasks. This way you can implement calculations for <strong>how much</strong> you want to sleep if it's not interval based but specific time based. Never had a problem with this approach. </p> http://stackoverflow.com/questions/897108/how-reliable-are-net-timers/897148#897148 1 Answer by Holli for How reliable are .net timers? Holli 2009-05-22T09:55:20Z 2009-05-22T09:55:20Z <p>From my experience I can tell timers may get out of sync if you have a very high performance load.</p> http://stackoverflow.com/questions/897108/how-reliable-are-net-timers/902283#902283 1 Answer by jrista for How reliable are .net timers? jrista 2009-05-23T19:30:40Z 2009-05-23T19:30:40Z <p>If you need a very high performance clock in .NET, you should check out System.Diagnostics.Stopwatch. It uses the kernel timer in windows to measure time very precisely. Its generally intended for diagnostic purposes, such as measuring the elapsed execution time for a given piece of code...but it could probably be wrapped in a custom high performance Timer class for scheduled events if need be.</p> http://stackoverflow.com/questions/897108/how-reliable-are-net-timers/902336#902336 2 Answer by bh213 for How reliable are .net timers? bh213 2009-05-23T19:56:30Z 2009-05-23T19:56:30Z <p>What is accurate for you? Normal windows timer has accurancy of about 100Hz. If you want something more accurate, take a look at QueryPerformanceTimer (System.Diagnostics.Stopwatch uses it). It is great and very accurate for short time spans, but as CPU frequency changes (power management), it will get out of sync.</p> <p>Also, I have seen system clock drift for minutes a day, so we had to install NTP utility and schedule it (the irony) to run periodically .</p> <p>Basically, we never acheived submillisecond time accurancy on windows machine, even with some tries to use main clock as baseline and QuerperformanceTimer as sort of differential timer. Never worked right.</p>