vote up 3 vote down star
1

I have a messaging aspect of my application using Jabber-net.

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.

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?

flag

35% accept rate

3 Answers

vote up 11 vote down check

What kind of timer are you using?

  • System.Windows.Forms.Timer will execute in the UI thread
  • System.Timers.Timer executes in a thread-pool thread unless you specify a SynchronizingObject
  • System.Threading.Timer executes its callback in a thread-pool thread

In all cases, the timer itself will be asynchronous - it won't "take up" a thread until it fires.

link|flag
Remember if you are not using the System.Windows.Forms.Timer that accessing a Control will throw an Exception unless you do the appropriate InvokeRequired check and invocation. – Byron Ross Apr 8 at 9:14
You're right, In my question I should have said I wasn't sure which timer I should use. Looking at the three options you have supplied and reading MSDN the System.Timers.Timer looks like the right one for this case as on the Tick a call will need to be made to a object created in the main thread. – MrEdmundo Apr 8 at 9:17
@MrEdmundo: What exactly do you mean by "the main thread"? – Jon Skeet Apr 8 at 9:21
@Byron Ross: An alternative being System.Timers.Timer with the SynchronizingObject set to a control. – Jon Skeet Apr 8 at 9:22
I consider the main thread to be the thread that the application is executing under and other threads are created from. Is the correct term for this UI Thread? – MrEdmundo Apr 8 at 9:25
show 3 more comments
vote up 1 vote down

The timer will effectively run in the background and cause events in your main thread to be executed.

link|flag
Thanks, I thought that was the case, just needed to sound it out with someone. – MrEdmundo Apr 8 at 9:06
vote up 0 vote down

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 WM_TIMER 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 SetTimer API and the OS will make sure to post a WM_TIMER message.

I've checked, only System.Windows.Forms.Timer+TimerNativeWindow.StartTimer(Int32) depends on:

[DllImport("user32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern IntPtr SetTimer(HandleRef hWnd, int nIDEvent, int uElapse, IntPtr lpTimerFunc);

So only this timer has the described "problem".

link|flag

Your Answer

Get an OpenID
or

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