vote up 0 vote down star

If I call Threading.Timer.Change() twice in a row, when will the thread next run?

For example:

myTimer.Change(5000, Timeout.Infinite);
// Only 2 seconds pass.
myTimer.Change(5000, Timeout.Infinite);

After this, will the thread next run in 3 seconds or 5 seconds?

I hope the answer is the latter, that the timer is reset with each call of Change(). If not, I'll need to find a way around this.

flag

2 Answers

vote up 3 vote down check

It will run in 5 seconds. Calling Change will Reset the initial Count.

link|flag
Thank you for your help. – joshdick Jul 14 at 19:50
vote up 1 vote down

Not according to this post: http://social.msdn.microsoft.com/Forums/en-US/netfxcompact/thread/0cce7729-be65-45da-a9e2-bda3893d84f2 It says your timer callback may get called when you call Change().

link|flag

Your Answer

Get an OpenID
or

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