vote up 1 vote down star

Does a System.Timers.Timer elapse on a separate thread than the thread that created it?

Lets say I have a class with a timer that fires every 5 seconds. When the timer fires, in the elapsed method, some object is modified. Lets say it takes a long time to modify this object, like 10 seconds. Is it possible that I will run into thread collisions in this scenario?

flag

33% accept rate
This could lead to problems. Note that, in general, threadpool threads are not designed for long-running processes. – Greg D Sep 16 at 22:58

4 Answers

vote up 5 vote down

MSDN Documentation on Timers states:

The System.Threading.Timer class makes callbacks on a ThreadPool thread and does not use the event model at all.

So indeed the timer elapses on a different thread.

link|flag
1  
True, but that is a completely different class. The OP asked about the System.Timers.Timer class. – Brian Gideon Sep 17 at 1:38
Oh, you're right. msdn.microsoft.com/en-us/library/… says "The Elapsed event is raised on a ThreadPool thread." Same conclusion from there I suppose. – Joren Sep 17 at 11:55
1  
Well, yeah, but it is not quite that simple. See my answer. – Brian Gideon Sep 17 at 12:36
vote up 0 vote down

Each elapsed event will fire in the same thread unless a previous Elapsed is still running.

So it handles the collision for you

try putting this in a console

    static void Main(string[] args)
    {
        Debug.WriteLine(Thread.CurrentThread.ManagedThreadId);
        var timer = new Timer(1000);
        timer.Elapsed += timer_Elapsed;
        timer.Start();
        Console.ReadLine();
    }

    static void timer_Elapsed(object sender, ElapsedEventArgs e)
    {
        Thread.Sleep(2000);
        Debug.WriteLine(Thread.CurrentThread.ManagedThreadId);
    }

you will get something like this

10 6 12 6 12

where 10 is the calling thread and 6 and 12 are firing from the bg elapsed event. If you remove the Thread.Sleep(2000); you will get something like this

10 6 6 6 6

Since there are no collisions.

But this still leaves u with a problem. if u are firing the event every 5 seconds and it takes 10 seconds to edit u need some locking to skip some edits.

link|flag
vote up 3 vote down

It depends. The System.Timers.Timer has two modes of operation.

If SynchronizingObject is set to an ISynchronizeInvoke instance then the Elapsed event will execute on the thread hosting the synchronizing object. Usually these ISynchronizeInvoke instances are none other than plain old Control and Form instances that we are all familiar with. So in that case the Elapsed event is invoked on the UI thread and it behaves similar to the System.Windows.Forms.Timer. Otherwise, it really depends on the specific ISynchronizeInvoke instance that was used.

If SynchronizingObject is null then the Elapsed event is invoked on a ThreadPool thread and it behaves similar to the System.Threading.Timer.

link|flag
vote up 0 vote down

If the elapsed event takes longer then the interval, it will create another thread to raise the elapsed event. But there is a workaround for this

static void timer_Elapsed(object sender, ElapsedEventArgs e)    
{     
   try
   {
      timer.Stop(); 
      Thread.Sleep(2000);        
      Debug.WriteLine(Thread.CurrentThread.ManagedThreadId);    
   }
   finally
   {
     timer.Start();
   }
}
link|flag

Your Answer

Get an OpenID
or

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