Hi there! I need to create some windows service which will execute every N period of time. The question is - which timer control should I use: System.Timers.Timer or System.Threading.Timer one? Does it influence on something? I am asking because I heard many evidences to non correct work of System.Timers.Timer in windows services. Thank you.
|
3
|
|
|
|
|
|
Both The timers you want to avoid are Use
If you choose
Both examples comes from the MSDN pages. |
|||
|
|
|
|
Either one should work OK. In fact, System.Threading.Timer uses System.Timers.Timer internally. Having said that, it's easy to misuse System.Timers.Timer. If you don't store the Timer object in a variable somewhere, then it is liable to be garbage collected. If that happens, your timer will no longer fire. Call the Dispose method to stop the timer, or use the System.Threading.Timer class, which is a slightly nicer wrapper. What problems have you seen so far? |
||
|
|
|
|
Thanks guys. 2 Tim: There are a lot of cases (according to Google.com) that service with timers has been stoped without any reasons, so I wanted to understand why that happens.. |
||
|
|
|
|
I agree with previous comment that might be best to consider a different approach. My suggest would be write a console application and use the windows scheduler: This will:
|
||
|
|
|
|
Don't use a service for this. Create a normal application and create a scheduled task to run it. To whoever downed me: Jon Galloway agrees with me. Or maybe its the other way around. Either way, the fact is that it is not best practices to create a windows service to perform an intermittent task. |
|||
|
|
