vote up 1 vote down star

There are three Timer classes that I am aware of, System.Threading.Timer, System.Timers.Timer, and System.Windows.Forms.Timer, but none of these have a .Reset() function which would reset the current elapsed time to 0.

Is there a BCL class that has this functionality? Is there a non-hack way of doing it? (I thought perhaps changing the time limit on it might reset it) Thought on how hard it would be to reimplement a Timer class that had this functionality, or how to do it reliably with one of the BCL classes?

flag

1  
Using JP's solution use an extension method – benPearce Jun 25 at 5:26
I too have the same need for reset and for the same reasons mentioned, FileSystemWatcher is unpleasant and inconvenient to use – John Oct 29 at 5:52

3 Answers

vote up 6 vote down check

I always do ...

myTimer.Stop();
myTimer.Start();

... is that a hack? :)

Per comment, on Threading.Timer, it's the Change method ...

dueTime Type: System.Int32 The amount of time to delay before the invoking the callback method specified when the Timer was constructed, in milliseconds. Specify Timeout.Infinite to prevent the timer from restarting. Specify zero (0) to restart the timer immediately.

link|flag
The other issue is that only woeks with Forms.Timer, and my app has no GUI (Application.Start() with no parameters), so I THINK that the Threading.Timer class is better for other reasons, but good point. – Matthew Scharley Jun 25 at 5:27
vote up 1 vote down

You could write an extension method called Reset(), which

  • calls Start()-Stop() for Timers.Timer and Forms.Timer
  • calls Change for Threading.Timer
link|flag
vote up 1 vote down

I believe they all have the equivalent of Start() and Stop() methods, except System.Threading.Timer.

So an extension method such as

public static void Reset(this Timer timer)
{
  timer.Stop();
  timer.Start();
}

Is one way to go about this.

link|flag
I'm not looking to measure elapsed time. My exact usecase for this is that I have a FileSystemWatcher watching a directory and want to catch groups of changes (ie, changes made within for example 5s of each other). The theory being that the first change starts a timer that gets reset with each change till it eventually fires and closes off the group. – Matthew Scharley Jun 25 at 5:35
Yeah, I spotted that when I re-read your question. Edited my answer. – Dan Jun 25 at 5:38

Your Answer

Get an OpenID
or

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