开发者

Multi-Threading - Cleanup strategy at program end

开发者 https://www.devze.com 2022-12-22 14:39 出处:网络
What is the best way to finish a multi-threaded application in a clean way? I am starting several socket connection开发者_JAVA技巧s from the main thread in seperate sockets and wait until the end of m

What is the best way to finish a multi-threaded application in a clean way?

I am starting several socket connection开发者_JAVA技巧s from the main thread in seperate sockets and wait until the end of my business day in the main thread and use currently System.Environment.Exit(0) to terminate it.

This leads to an unhandled exception in one of the childs. Should I stop the threads from the list? I have been reluctant to implement any real stopping in the childs yet, thus I am wondering about the best practice. The sockets are all wrapped nicely with proper destructors for logging out and closing, but it still leads to errors.


have a look at jon skeet's articles about multithreading:

http://www.yoda.arachsys.com/csharp/threads/

especially "Shutting down worker threads gracefully":

http://www.yoda.arachsys.com/csharp/threads/shutdown.shtml


For manualy created threads you should set IsBackground property to true. In this case (if all your threads except main one) would be background, you application gracefully closed after returning from Main(string[] arg) function.

P.S. All Thread pools threads are background.


Whenever you do a long blocked wait (such as waiting for an incoming connection) use the Begin/End form of the method. Then use a ManualResetEvent to represent the 'should exit' condition. Then block on the AsyncWaitHandle and the exit event. This will allow you to terminate cleanly.

Example:

// exit is a ManualResetEvent
var asyncResult = socket.BeginAccept(null, null);
if(WaitHandle.WaitAny(new[] { exit, asyncResult.AsyncWaitHandle }) == 0)
   return;
var connection = socket.EndAccept(asyncResult);

And in your main method when you want to quit:

exit.Set();
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号