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

From MSDN:

The Timer.Elapsed event is raised on a ThreadPool thread, so the event-handling method might run on one thread at the same time that a call to the Timer.Stop method runs on another thread. This might result in the Elapsed event being raised after the Stop method is called..

I have a timer that runs for a specific time then elapses and sets a flag. Sometimes I want to stop the timer and restart it.

Currently when I try to stop the timer, the elapsed event still fires (sometimes), so my flag is set when I don't want it to be.

How do I stop the flag and be sure the elapsed event doesn't fire?

**EDIT**

In the event handler, I've tried checking the timer's state to ensure its enabled before I run the code, and I've also tried setting a flag when I stop the timer and checking that flag before running the code.

Neither work

share|improve this question
Try to test Timer state before setting flag. – Hamlet Hakobyan Nov 30 '12 at 22:25
1  
You can always dispose the current timer and create a fresh one to prevent old events from firing. – Thomas C. G. de Vilhena Nov 30 '12 at 22:30

1 Answer

        Timer t = new Timer(4000);
        t.Elapsed += t_Elapsed;
        t.Stop();
        t.Dispose();

the last line will remove the timer, so that the elapsed event can not happen.

If the timer is already executing the elapsed function when stop and dispose are called, the execution will complete.

share|improve this answer

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.