Examples of Asynchronous Interaction in C#.Net?! - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:56:51Zhttp://stackoverflow.com/feeds/question/914665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net-1Examples of Asynchronous Interaction in C#.Net?!Goober2009-05-27T08:48:10Z2009-05-27T10:48:53Z
<p>I know that it's possible to implicitly provide asynchronous interaction using:</p>
<ul>
<li>Asynchronous Delegates</li>
<li>Asynchronous Callbacks</li>
</ul>
<p>I was just wondering what other methods .Net supports for asynchronous interaction?</p>
<p>Help greatly appreciated.</p>
<p>Regards</p>
<p>EDIT:</p>
<p>Maybe I didn't explain myself correctly....
I UNDERSTAND THREADING AND CONCURRENCY PERFECTLY, I simply wanted a list of potential ways to implement asychronous interaction in .Net, aside from using asynchronous delegates or callbacks.</p>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/914687#9146870Answer by Grzenio for Examples of Asynchronous Interaction in C#.Net?!Grzenio2009-05-27T08:52:31Z2009-05-27T08:52:31Z<p>Take a look at this web page, its nicely written with good examples:
<a href="http://www.yoda.arachsys.com/csharp/threads/" rel="nofollow">http://www.yoda.arachsys.com/csharp/threads/</a></p>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/914688#9146880Answer by ilivewithian for Examples of Asynchronous Interaction in C#.Net?!ilivewithian2009-05-27T08:52:57Z2009-05-27T08:52:57Z<p>This might be outside what you're asking, but there is also support for Message Queueing.</p>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/914697#9146970Answer by Earwicker for Examples of Asynchronous Interaction in C#.Net?!Earwicker2009-05-27T08:56:25Z2009-05-27T08:56:25Z<p>Asynchronous operations in .NET are started by calling a method that is named <code>BeginSomething</code>, where <code>Something</code> is probably going to be <code>Invoke</code>, <code>Write</code>, <code>Send</code> or some other operation.</p>
<p>Example:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.beginsend.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.beginsend.aspx</a></p>
<p>You pass a delegate of your own that will be executed when the operation completes. You can then get the result of the operation by calling a corresponding method <code>EndSomething</code>.</p>
<p>Example:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.endsend" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.endsend</a>(VS.80).aspx</p>
<p>The pattern is <em>usually</em> the same regardless of the operation being performed. There are oddities where the <code>EndSomething</code> method is named something inconsistent instead.</p>
<p>More examples:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.io.stream.beginread.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.stream.beginread.aspx</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.description.imetadataexchange.beginget.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.servicemodel.description.imetadataexchange.beginget.aspx</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.begingetresponse.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.webrequest.begingetresponse.aspx</a></li>
</ul>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/914704#9147040Answer by kaze for Examples of Asynchronous Interaction in C#.Net?!kaze2009-05-27T08:58:26Z2009-05-27T08:58:26Z<p>For me, WCF with MSMQ binding works very nice.</p>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/914791#9147910Answer by Fredrik Mörk for Examples of Asynchronous Interaction in C#.Net?!Fredrik Mörk2009-05-27T09:20:17Z2009-05-27T09:20:17Z<p>(I am not sure I entirely understand what you aim for in your question, but I'll give it a shot)</p>
<p>For allowing asynchronous code execution in winforms applications the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a> component is rather convinient. I also often use the <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool.queueuserworkitem.aspx" rel="nofollow">ThreadPool.QueueUserWorkItem</a> method as a simple way to spawn a method on its own thread.</p>
http://stackoverflow.com/questions/914665/examples-of-asynchronous-interaction-in-c-net/915096#9150960Answer by Rune FS for Examples of Asynchronous Interaction in C#.Net?!Rune FS2009-05-27T10:48:53Z2009-05-27T10:48:53Z<p>you could base Expression tress or other monads (not yet allow to link but the term can be found wiki and Calvin has a great blog on the subject as well)</p>
<p>basically everything that allows you to make imparative coding can be used for asyncrounous implementations.</p>
<p>You could also google on continuation passing. A style of coding where all methods do not return values (void) but take a parameter (a delegate of sorts) telleing it what to execute when done.</p>