I have a service written in C# (.NET 1.1) and want it to perform some cleanup actions at midnight every night. I have to keep all code contained within the service, so what's the easiest way to accomplish this? Use of Thread.Sleep() and checking for the time rolling over?
|
|
|||||||
|
|
I wouldn't use Thread.Sleep(). Either use a scheduled task (as others have mentioned), or set up a timer inside your service, which fires periodically (every 10 minutes for example) and check if the date changed since the last run:
|
|||||||||||||||||||
|
|
Check out Quartz.NET. You can use it within a Windows service. It allows you to run a job based on a configured schedule, and it even supports a simple "cron job" syntax. I've had a lot of success with it. Here's a quick example of its usage:
|
|||||||||
|
|
Does it have to be an actual service? Can you just use the built in scheduled tasks in the windows control panel. |
|||||||||||||||||
|
|
A daily task? Sounds like it should just be a scheduled task (control panel) - no need for a service here. |
|||
|
|
|
The way I accomplish this is with a timer. Run a server timer, have it check the Hour/Minute every 60 seconds. If it's the right Hour/Minute, then run your process. I actually have this abstracted out into a base class I call OnceADayRunner. Let me clean up the code a bit and I'll post it here.
The beef of the method is in the e.SignalTime.Minute/Hour check. There are hooks in there for testing, etc. but this is what your elapsed timer could look like to make it all work. |
|||||
|
|
As others already wrote, a timer is the best option in the scenario you described. Depending on your exact requirements, checking the current time every minute may not be necessary. If you do not need to perform the action exactly at midnight, but just within one hour after midnight, you can go for Martin's approach of only checking if the date has changed. If the reason you want to perform your action at midnight is that you expect a low workload on your computer, better take care: The same assumption is often made by others, and suddenly you have 100 cleanup actions kicking off between 0:00 and 0:01 a.m. In that case you should consider starting your cleanup at a different time. I usually do those things not at clock hour, but at half hours (1.30 a.m. being my personal preference) |
|||
|
|
|
I would suggest that you use a timer, but set it to check every 45 seconds, not minute. Otherwise you can run into situations where with heavy load, the check for a particular minute is missed, because between the time the timer triggers and the time your code runs and checks the current time, you might have missed the target minute. |
|||||||
|