Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an issue with System.Threading.Timer. I am scheduling some actions using a time in a windows service. The timer starts executing the callback after a specified dueTime period. The windows service starts up after reboot automatically. However, I have observed a strange thing after a system reboot- the callback method starts executing itself 3 or 4 minutes before the specified period. What might be the reason for such behavior?

Here is the sample code:

TimeSpan timeToWait = this.StartTime - DateTime.Now;
Int64 msToSleep = (Int64)Math.Round(timeToWait.TotalMilliseconds);
_timer = new Timer(callback_method, null, msToSleep, MinutesScheduledInterval * 60000);

where _timer is a member variable, StartTime - the time when the timer should first fire.

share|improve this question
Do you have a code example? – David Basarab Mar 22 '10 at 19:19
Have you tried logging the values of all the variables involved in this code? – Jon Seigel Mar 22 '10 at 19:26
Yep, sure. The values involved here are those expected. – Markus Mar 22 '10 at 19:32

1 Answer

up vote 2 down vote accepted

How soon after boot does your service start? The Windows Time service can adjust the clock to get it in sync with a domain controller. Your DateTime.Now value might be taken before that happens. Diagnose this first by entering the BIOS at boot-up and checking the clock. Fix it with a service dependency.

share|improve this answer
What do you mean by service dependency? Look, I am doing this on a remote server, and do not have the posibility to do as you suggested. – Markus Mar 22 '10 at 19:52
Dependencies tab of the service properties. If you can't reach the keyboard then surely the local admin can? – Hans Passant Mar 22 '10 at 19:57
Could you please give me an example of service on which the current service might be dependant on? Is the Net Logon service appropriate here? – Markus Mar 22 '10 at 20:16
I don't know enough about your service. But I'd try Windows Time first. – Hans Passant Mar 22 '10 at 20:20
Ok, I will try. Thank you for your effort. – Markus Mar 22 '10 at 20:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.