Hi, As you know I'm developing an async connection manager. I need two threads in my NBIO impl (one to accept and connect clients, the other to get write and read events). Now I have two possibilities: I could call the events handlers in the thread that received the events, or I could perhaps use an internal event pipeline. So in fact the question is wether to have an event queue integrated (processed by a thread pool) or to let the class that uses the manager implement this.
What seems the best way? Are they other alternatives? Nils -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
