What is an "async IO operation" in .NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:20:16Z http://stackoverflow.com/feeds/question/585206 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/585206/what-is-an-async-io-operation-in-net 1 What is an "async IO operation" in .NET? Vilx- 2009-02-25T08:55:13Z 2009-11-04T02:00:04Z <p>To cut a long story short - read <a href="http://piers7.blogspot.com/2005/11/threadstatic-callcontext-and_02.html" rel="nofollow">this article</a> first and then <a href="http://www.lhotka.net/WeBlog/PermaLink,guid,019e3c37-38ed-492e-b769-16e1a57fed0a.aspx" rel="nofollow">this article</a>. In short - it's the old issue about ASP.NET and randomly switching among threads. Well, not so randomly actually. As the second article explains, this only happens "when your thread performs an async IO operation". So... what the heck is an async IO operation in this case? I'm familiar with the standard <em>Begin...End...IAsyncResult</em> and the event model for asynchronous IO. But I can't see how this could be tied together with a thread switch.</p> <p>The point is - I'm simply afraid of any "hidden" asynchronous IO that my software could be doing (and which would then provoke a thread switch). But how to identify them?</p> http://stackoverflow.com/questions/585206/what-is-an-async-io-operation-in-net/585230#585230 0 Answer by Brian Rasmussen for What is an "async IO operation" in .NET? Brian Rasmussen 2009-02-25T09:03:55Z 2009-02-25T09:03:55Z <p>Async IO operations refer to situations where the calling thread does not block in order to wait for IO. Examples include the BeginXXX operations on streams, network connections etc. </p> <p>When you set up a call using BeginXXX a threadpool thread will be used to execute your callback while a device driver typically handles the actual IO. Thus a number of different threads may be involved. </p>