Is there a C# reactor/proactor library? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:37:50Z http://stackoverflow.com/feeds/question/973160 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/973160/is-there-a-c-reactor-proactor-library 1 Is there a C# reactor/proactor library? brofield 2009-06-10T00:26:00Z 2009-07-04T07:20:08Z <p>I'm looking to move a Windows C++ application to C# so that some major enhancements are a bit easier. The C++ application is single-threaded and uses a home-grown reactor pattern for all event handling of accepting, reading and writing sockets, and timers. All socket handling is done async.</p> <p>What is the accepted way to implement a C# reactor pattern? Are the existing libraries?</p> http://stackoverflow.com/questions/973160/is-there-a-c-reactor-proactor-library/973180#973180 2 Answer by Alan for Is there a C# reactor/proactor library? Alan 2009-06-10T00:36:28Z 2009-06-10T00:36:28Z <p>.NET Threads, Sockets and Event Handling have first class support within C# and .NET, so the need for an external library is pretty light. In otherwords, if you know what you are doing, the framework makes it very straight forward to roll your own socket event handling routines.</p> <p>Both companies I work for, tended to reuse the default .NET Socket library as is for all network connections.</p> <p>Edit to add: Basically what this means is this is an excellent opportunity to learn about Delegates, Events, Threads, and Sockets in .NET/C#</p> http://stackoverflow.com/questions/973160/is-there-a-c-reactor-proactor-library/1081707#1081707 1 Answer by con_fuse for Is there a C# reactor/proactor library? con_fuse 2009-07-04T07:04:56Z 2009-07-04T07:04:56Z <p>brofield,</p> <p>Unfortunately the mentality of the C# world is still in the thread per connection realm. I'm looking for a way to handle multiple connections on a single Compact Framework/ Windows CE box and looking to write my own Proactor/Reactor pattern (fashioned after the one used in ACE) Compact Framework doesn't seem to support asynch connecting - just asynch reading and writing. I also need to manage tight control over timeouts (soft realtime application).</p> <p>Alan, </p> <p>One reason to implement a proactor/reactor pattern is so that you don't have to have a thread running for each connection. A web server is the classic example. A busy server could easily have 100s of connections active at anyone time. With that many threads (and I've seen implementations that have one thread to read, another to write data) the time spent in a context switching becomes significant. Under Windows CE on a 750Mhz ARM processor, I measured over a millisecond with peaks as high as 4 milliseconds.</p> <p>I still find most C# and Java applicatons that I've come across still have way too many threads running. Seems to be the solution for everything - start another thread. Example. Eclipse (the IDE) use 44 threads even before I actually open a project. 44 threads???? to do what exactly??? Is that why Eclipse is so slow?</p> http://stackoverflow.com/questions/973160/is-there-a-c-reactor-proactor-library/1081723#1081723 0 Answer by Steve Cooper for Is there a C# reactor/proactor library? Steve Cooper 2009-07-04T07:20:08Z 2009-07-04T07:20:08Z <p>Have a read of <a href="http://tomasp.net/blog/csharp-async.aspx" rel="nofollow">Asynchronous Programming in C# using Iterators</a>;</p> <blockquote> <p>In this article we will look how to write programs that perform asynchronous operations without the typical inversion of control. To briefly introduce what I mean by 'asynchronous' and 'inversion of control' - asynchronous refers to programs that perform some long running operations that don't necessary block a calling thread, for example accessing the network, calling web services or performing any other I/O operation in general.</p> </blockquote>