I understand threading in theory but not in practice in .net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:34:58Z http://stackoverflow.com/feeds/question/49870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net 7 I understand threading in theory but not in practice in .net George Mauer 2008-09-08T14:58:06Z 2009-04-20T17:36:22Z <p>I have a basic cs-major understanding of multi-threading but have never had to do anything beyond simple timers in an application. Does anyone know of a good resource that will give me a tour how to work with multi-threaded applications, explaining the basics and maybe posing some of the more difficult stuff?</p> http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/49872#49872 24 Answer by Gulzar for I understand threading in theory but not in practice in .net Gulzar 2008-09-08T14:59:30Z 2009-04-13T18:58:11Z <p>This is a great free resource by Joseph Albahari. <a href="http://www.albahari.com/threading/" rel="nofollow">Threading in C#</a></p> http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/49880#49880 5 Answer by Joel Coehoorn for I understand threading in theory but not in practice in .net Joel Coehoorn 2008-09-08T15:02:55Z 2009-04-14T14:24:07Z <p>There are 4 basic ways to synchronize threads in .Net:</p> <ul> <li>BackgroundWorker control</li> <li>WaitHandles</li> <li>Callback functions</li> <li>polling an ASyncResult object</li> </ul> <p>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.</p> <p>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.</p> <p>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.</p> <p>Finally, if and only if for some reason none of the above will work you can fall back to polling.</p> <p>I can think of 5 different ways to get a new thread in .Net, also roughly in order:</p> <ul> <li>OS created, normally as the result of winforms event (including the BackgoundWorker).</li> <li>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.</li> <li>ThreadPool.QueueUserWorkItem(). Use this most of the time to create your own threads.</li> <li>Delegate.BeginInvoke()/EndInvoke(). You can wrap any method this way.</li> <li>Thread.Start(). You <em>could</em> 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.</li> </ul> http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/49895#49895 11 Answer by Jason Bunting for I understand threading in theory but not in practice in .net Jason Bunting 2008-09-08T15:06:37Z 2008-09-08T15:06:37Z <p>Two great articles:</p> <blockquote> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc163744.aspx" rel="nofollow"><strong>What Every Dev Must Know About Multithreaded Apps</strong></a><br /> <a href="http://msdn.microsoft.com/en-us/magazine/cc163715.aspx" rel="nofollow"><strong>Understand the Impact of Low-Lock Techniques in Multithreaded Apps</strong></a></p> </blockquote> <p>Although this article isn't exactly what you are looking for specifically, it will hopefully be of assistance generally (i.e. it <em>is</em> related, and a very good read):</p> <blockquote> <p><a href="http://www.gotw.ca/publications/concurrency-ddj.htm" rel="nofollow"><strong>The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software</strong></a></p> </blockquote> http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/49902#49902 2 Answer by Pascal for I understand threading in theory but not in practice in .net Pascal 2008-09-08T15:09:44Z 2008-09-08T15:09:44Z <p>A good web-resource to learn about multi-threading in .NET:</p> <ul> <li><a href="http://www.yoda.arachsys.com/csharp/threads/index.shtml" rel="nofollow">HTML version</a>.</li> <li><a href="http://www.yoda.arachsys.com/csharp/threads/printable.shtml" rel="nofollow">Printable version</a></li> <li><a href="http://www.yoda.arachsys.com/csharp/threads/resources.shtml" rel="nofollow">Further resources - (including examples)</a></li> </ul> http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/91292#91292 1 Answer by Dror Helper for I understand threading in theory but not in practice in .net Dror Helper 2008-09-18T09:49:58Z 2008-09-18T09:49:58Z <p>One of the best resources I know on the subject is the "threading in C#" book: <a href="http://www.albahari.com/threading/" rel="nofollow">http://www.albahari.com/threading/</a></p> <p>I has a great overview of all a .net developer need to understand in order to program multi threaded applications.</p>