Do .NET Timers Run Asynchronously ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T08:06:44Zhttp://stackoverflow.com/feeds/question/729137http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/729137/do-net-timers-run-asynchronously3Do .NET Timers Run Asynchronously ?MrEdmundo2009-04-08T08:58:18Z2009-04-08T09:27:19Z
<p>I have a messaging aspect of my application using Jabber-net.</p>
<p>What I would like to do if for some reason the connection to the Server is ended is keep trying to connect every minute or so.</p>
<p>If I start a Timer to wait for a period of time before the next attempt, does that timer run asynchronously and the resulting Tick event join the main thread, or would I need to start my own thread and start the timer from within there?</p>
http://stackoverflow.com/questions/729137/do-net-timers-run-asynchronously/729139#7291391Answer by ck for Do .NET Timers Run Asynchronously ?ck2009-04-08T09:00:03Z2009-04-08T09:00:03Z<p>The timer will effectively run in the background and cause events in your main thread to be executed.</p>
http://stackoverflow.com/questions/729137/do-net-timers-run-asynchronously/729165#72916511Answer by Jon Skeet for Do .NET Timers Run Asynchronously ?Jon Skeet2009-04-08T09:07:25Z2009-04-08T09:07:25Z<p>What kind of timer are you using?</p>
<ul>
<li><code>System.Windows.Forms.Timer</code> will execute in the UI thread</li>
<li><code>System.Timers.Timer</code> executes in a thread-pool thread unless you specify a <code>SynchronizingObject</code></li>
<li><code>System.Threading.Timer</code> executes its callback in a thread-pool thread</li>
</ul>
<p>In all cases, the timer itself will be asynchronous - it won't "take up" a thread until it fires.</p>
http://stackoverflow.com/questions/729137/do-net-timers-run-asynchronously/729184#7291840Answer by Davy Landman for Do .NET Timers Run Asynchronously ?Davy Landman2009-04-08T09:11:44Z2009-04-08T09:27:19Z<p>I'm not sure how the Timers in .NET are implemented, but if they use the windows API for creating a timer the form message loop receives a <a href="http://msdn.microsoft.com/en-us/library/ms644902%28VS.85%29.aspx" rel="nofollow"><code>WM_TIMER</code></a> message and only when the form thread is not busy can it proces that request, so the timer would fire at the right time, but you could be stalling the UI thread. The timer would be started with the <a href="http://msdn.microsoft.com/en-us/library/ms644906%28VS.85%29.aspx" rel="nofollow"><code>SetTimer</code></a> API and the OS will make sure to post a <code>WM_TIMER</code> message.</p>
<p>I've checked, only <code>System.Windows.Forms.Timer+TimerNativeWindow.StartTimer(Int32)</code> depends on:</p>
<pre><code>[DllImport("user32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern IntPtr SetTimer(HandleRef hWnd, int nIDEvent, int uElapse, IntPtr lpTimerFunc);
</code></pre>
<p>So only this timer has the described "problem".</p>