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 been checking out some of the possible timers lately, and the Threading.Timer and Timers.Timer are the ones that look needful to me (since they support thread pooling).

I am making a game, and I plan on using all types of events, with different intervals, etc.

Which would be the best?

share|improve this question

2 Answers

up vote 128 down vote accepted

This article offers a fairly comprehensive explanation:

http://msdn.microsoft.com/en-us/magazine/cc164015.aspx

The specific difference appears to be that System.Timers.Timer is geared towards multithreaded applications and is therefore thread-safe via its SynchronizationObject property, whereas System.Threading.Timer is ironically not thread-safe out-of-the-box.

I don't believe that there is a difference between the two as it pertains to how small your intervals can be.

share|improve this answer
27  
I think this excerpt is enlightening: "Unlike the System.Windows.Forms.Timer, the System.Timers.Timer class will, by default, call your timer event handler on a worker thread obtained from the common language runtime (CLR) thread pool. [...] The System.Timers.Timer class provides an easy way to deal with this dilemma—it exposes a public SynchronizingObject property. Setting this property to an instance of a Windows Form (or a control on a Windows Form) will ensure that the code in your Elapsed event handler runs on the same thread on which the SynchronizingObject was instantiated." – mico Oct 19 '10 at 9:53
According to the Thread Safety section in Threading.Timer's MSDN article, it is perfectly thread-safe... – Pieter Oct 21 '12 at 18:33
3  
System.Threading.Timer is as "ironically" not thread-safe as System.Threading.Thread and the threads obtained through the pool. Just because these classes do not hold your hand and manage the use of the lock keyword itself does not mean these classes aren't threadsafe. You might as well say System.Threading.Thread is not threadsafe, because it's exactly as true. – Kirk Woll Jan 4 at 22:09

In the book CLR Via C#, Jeff Ritcher discourage using System.Timers.Timer, this timer is derived from System.ComponentModel.Component, allowing it to be used in design surface of Visual Studio. So that it would be only useful if you want a timer on a design surface.

He prefers to use System.Threading.Timer for background tasks on a thread pool thread.

share|improve this answer
10  
It can be used in a design surface - it doesn't mean it has to be, and there are no detrimental effects from not doing so. Reading the article in the earlier answer to this question, the Timers.Timer seems much more preferable to Threading.Timer. – Steve Nov 16 '11 at 12:38
2  
Well, what is preferable depends on context, right? As I understand it, System.Threading.Timer executes the passed-in callback on a new worker thread from ThreadPool. Which, I assume is also why it's not necessarily thread-safe. Kinda makes sense. So, in theory, you wouldn't have to worry about the gruntwork of spinning up your own worker thread, as this timer will do it for you. Kinda seems ridiculously useful. – Finster Mar 27 '12 at 15:05
2  
Using System.Threading.Timer is akin to using a thread pool or creating your own thread. Of course these classes do not handle synchronization for you -- that's your job! Neither a thread pool thread, your own thread, nor a timer callback will handle locking -- on what object and in what fashion and in what circumstances you need to lock requires good judgement and the threading version of the timer gives you the most flexibility and granularity. – Kirk Woll Jan 4 at 22:07

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.