What is the best way to make a thread signal another thread in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:25:42Zhttp://stackoverflow.com/feeds/question/115928http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net6What is the best way to make a thread signal another thread in .NET?André Neves2008-09-22T16:29:54Z2009-01-13T16:36:48Z
<p>I need to have a thread signal another if the user wishes to interrupt execution, however I'm unsure about how to implement the signaling/signal-checking mechanism. I wouldn't like to have a singleton in my project (like a global <code>bool</code>), but is there an alternative?</p>
<p>In <a href="http://stackoverflow.com/questions/34151/c-thread-question-setting-a-value-to-indicate-the-thread-has-finished">this thread</a> people suggest proper structures for that in C++, but I don't know about anything similar in .NET. Could somebody please shed some light?</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/115935#115935-2Answer by Joel Coehoorn for What is the best way to make a thread signal another thread in .NET?Joel Coehoorn2008-09-22T16:31:06Z2008-09-22T16:31:06Z<p>Look at the System.Runtime.Remoting namespace.</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/115948#1159484Answer by Statement for What is the best way to make a thread signal another thread in .NET?Statement2008-09-22T16:33:39Z2008-09-22T16:33:39Z<p>A bit vague (short of time), but look into <a href="http://msdn.microsoft.com/en-us/library/system.threading.manualresetevent.aspx" rel="nofollow">ManualResetEvent and AutoResetEvent</a>. You also might want to look up Monitor and lock keyword.</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/115962#1159627Answer by Matt Howells for What is the best way to make a thread signal another thread in .NET?Matt Howells2008-09-22T16:35:59Z2008-09-22T19:48:15Z<p>Try out <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a>. It supports progress updates and cancellation of a running task.</p>
<p>If you want one thread to wait until another thread has finished doing its thing, then Monitor.Wait and Monitor.Pulse are good, as is ManualResetEvent. However, these are not really of any use for cancelling a running task.</p>
<p>If you want to write your own cancellation code, you could just have a field somewhere which both threads have access to. Mark it volatile, e.g.:</p>
<pre><code>private volatile bool cancelling;
</code></pre>
<p>Have the main thread set it to true, and have the worker thread check it periodically and set it to false when it has finished.</p>
<p>This is not really comparable to having a 'global variable', as you can still limit the scope of the semaphore variable to be private to a class.</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/116009#1160093Answer by torial for What is the best way to make a thread signal another thread in .NET?torial2008-09-22T16:44:39Z2008-09-22T16:44:39Z<p>Look into Monitor.Wait and Monitor.Pulse. Here is an excellent article on Threading in .Net (very readable): <a href="http://www.albahari.com/threading/part4.aspx" rel="nofollow">http://www.albahari.com/threading/part4.aspx</a></p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/116062#1160621Answer by Mark Cidade for What is the best way to make a thread signal another thread in .NET?Mark Cidade2008-09-22T16:53:23Z2008-09-22T16:53:23Z<p>A simple solution, like a synchronized static boolean, should be all you need as opposed to a framework-based solution which copuld be overkill for your scenario. In case you still want a framework, have a look at the <a href="http://blogs.msdn.com/pfxteam/archive/tags/Parallel+Extensions/default.aspx" rel="nofollow">parallel extensions to .NET</a> for ideas.</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/116342#1163420Answer by Dror Helper for What is the best way to make a thread signal another thread in .NET?Dror Helper2008-09-22T17:46:03Z2008-09-22T17:46:03Z<p>It depends on what kind of synchronization you need.
If you want to be able to run thread in a loop until some kind of end of execution is reached - all you need is a static bool variable.
If you want one thread to wait till another thread reach a point in execution you might want to use WaitEvents (AutoResetEvent or ManualResetEvent).
Iflyyou need to wait for multiple waitHandles you can use WaitHandle.WaitAll or WaitHandle.WaitAny.</p>
http://stackoverflow.com/questions/115928/what-is-the-best-way-to-make-a-thread-signal-another-thread-in-net/439722#4397220Answer by Brig Lamoreaux for What is the best way to make a thread signal another thread in .NET?Brig Lamoreaux2009-01-13T16:36:48Z2009-01-13T16:36:48Z<p>Take a look at Andrew D. Birrell <a href="http://research.microsoft.com/users/birrell/papers/ThreadsCSharp.pdf" rel="nofollow">Introduction to Multithreading in C#</a>. I just finished it and it does a great job in explaining what objects and methods to use in the System.Threading namespace. It also looks at the common pitfalls found in concurrency.</p>