There are 4 basic ways to synchronize threads in .Net:
- BackgroundWorker control
- WaitHandles
- Callback functions
- polling an ASyncResult object
Generally you want to start at the top of that list and work down. That means first look and see if a backgroundworker control is appropriate to the situation. However, it pretty much assumes windows forms and that you're only spawning one new thread.
So next try waithandles. Waithandles are good for coordinating several threads together. You can kick them all off and wait for them all to finish, or if you want to keep a certain number active you keep waiting for just one and spawning the next when it finishes. Or maybe you know one thread will finish much sooner, so you can wait for it to finish, do a little bit of work, and then wait for the rest to finish.
Waithandles might seem like a bit much if, say, you're only spawning one additional thread and you don't want to block until it's finished. Then you might use a callback, so that the function you designate will be called as soon as the thread completes.
Finally, if and only if for some reason none of the above will work you can fall back to polling.
I can think of 5 different ways to get a new thread in .Net:Net, also roughly in order:
- OS created, normally as the result of winforms event .
- ThreadPool.QueueUserWorkItem(). Use this most of (including the time to create your own threadsBackgoundWorker).
- Obj.Begin___()/End____(). Certain CLR classes already have these asynchronous methods defined for you, and obviously you want to use them when they're available.
- ThreadPool.QueueUserWorkItem(). Use this most of the time to create your own threads.
- Delegate.BeginInvoke()/EndInvoke(). You can wrap any method this way.
- Thread.Start(). You could do it this way, but I read something recently (don't have the link now) that if QueueUserWorkItem won't work the delegate method is probably better.
