Using Thread.Sleep() in a Windows Service - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T08:27:26Zhttp://stackoverflow.com/feeds/question/998142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service3Using Thread.Sleep() in a Windows Servicematt2009-06-15T20:13:34Z2009-06-15T21:01:01Z
<p>I'm writing a windows service that needs to sleep for long periods of time (15 hrs is the longest it will sleep, 30 mins is the shortest). I'm currently using <strong>Thread.Sleep(calculatedTime)</strong> to put my code into sleep mode. Is Thread.Sleep the best option or should I be using a timer? I've been googling this for a while and can't find a concise answer. Since this is a windows service, I don't have to worry about locking the UI, so I can't think of a reason not to use Thread.Sleep.</p>
<p>Any insight would be appreciated.</p>
http://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service/998155#99815510Answer by Mitchel Sellers for Using Thread.Sleep() in a Windows ServiceMitchel Sellers2009-06-15T20:17:11Z2009-06-15T21:01:01Z<p>I would use a timer, Thread.Sleep, could cause a blocking piece that could prevent the service from shutting down.</p>
<p>If the interval is that wide spread, and regular, you might just schedule it as well. But if you are talking about long, non-consistent intervals, then yes a Timer would be better.</p>
http://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service/998170#9981706Answer by Dan Herbert for Using Thread.Sleep() in a Windows ServiceDan Herbert2009-06-15T20:18:53Z2009-06-15T20:18:53Z<p>It's generally regarded as bad practice to use <code>Thread.Sleep()</code> in a lot of cases.</p>
<p>If you want the service to run in the background, you should use a timer.</p>
<p>If the service only needs to be run at scheduled intervals, I'd recommend you look into using Windows task scheduler to allow Windows to run the application when you need it to.</p>
http://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service/998210#9982102Answer by Remus Rusanu for Using Thread.Sleep() in a Windows ServiceRemus Rusanu2009-06-15T20:28:39Z2009-06-15T20:28:39Z<p>You should not pre-calculate such large amounts of time and sleep for hours. Sleep for a minute at best, then wake up and re-calculate the time, sleep again for no more that a minute. I assume the calculation is very cheap or it can be made very cheap with caching. The problem my advise is trying to mitigate is that computer clocks are surprisingly 'jumpy', mostly due to time drift corrected by network time service, also because of daylights savings and not least because user adjusting the clock. So is better to constantly recompute the time for such long intervals, even if it means waking up every minute or so. And don't be surprised (ie. don't assert) if you wake up in the 'past', clocks can adjust back in time.</p>
http://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service/998211#9982111Answer by Kevin Pullin for Using Thread.Sleep() in a Windows ServiceKevin Pullin2009-06-15T20:29:11Z2009-06-15T20:29:11Z<p>Another thing to consider is that threads are finite resources and each thread consumes a portion of memory (1MB?) for the its stack. They may also increase load for the scheduler.</p>
<p>Now, if your service isn't doing much else the wasted space is trivial, but it is wise to be aware of this before you start allocating multiple threads. Using a ThreadPool and/or Timers is much more efficient.</p>
http://stackoverflow.com/questions/998142/using-thread-sleep-in-a-windows-service/998251#9982513Answer by Carlos A. Ibarra for Using Thread.Sleep() in a Windows ServiceCarlos A. Ibarra2009-06-15T20:40:01Z2009-06-15T20:40:01Z<p>Since a service may be asked to stop at any time by the Service Control Manager, your thread should always be ready to respond to these requests, so you should not use Thread.Sleep(). Instead, create a manual-reset event in the main thread and use its WaitOne method with a timeout in your worker thread. WaitOne will return false when the time expires.</p>
<p>When your service class's OnStop or OnShutdown methods are called, set the event and that will cause WaitOne to return true and you can then exit your worker thread.</p>