开发者

Windows Service needs to wait, Thread.Sleep?

开发者 https://www.devze.com 2022-12-26 01:58 出处:网络
I have a c# windows service that needs to execute a database query every 60 seconds开发者_开发知识库 (or whatever interval is set in the config file). I\'m using Thread.sleep(60) in a while loop to ac

I have a c# windows service that needs to execute a database query every 60 seconds开发者_开发知识库 (or whatever interval is set in the config file). I'm using Thread.sleep(60) in a while loop to accomplish this. Is there a better way to do this?

Thanks


You can use a System.Threading.Timer to run your code every 60 seconds instead of doing it in a sleeping thread.


It depends on what you want to do. If you want a (more) exact method you may want to use System.Threading.Timer. One thing about thread.sleep is that it really is "sleepatleastuntil...". The processor will ignore your thread until the sleep time is past. The next time it would give your thread priority, after the sleep time is past, it will.

This will normally be very close to the desired interval, but could be longer. Don't yield unless you really intend to yield.


Use a Timer to fire the process every 60 seconds rather than force the process to sleep.

0

精彩评论

暂无评论...
验证码 换一张
取 消