Hi Scott, On Dec 26, 2007 3:48 AM, <[EMAIL PROTECTED]> wrote: > If a single client session sends multiple requests before a response for the > first request is sent by the server, it appears that client requests are > processed sequentially/serially. It appears that the processing of the > second request does commence until the first response is returned (i.e., > until messageReceived() returns). I was wondering if there's a > "mina-specific" way to do the processing of multiple requests from a single > session in parallel.
If you are using 2.0.0-M1-SNAPSHOT, then you can use UnorderedThreadPoolExecutor to achieve what you want. If you are using 1.x, then you will have to modify ExecutorFilter.java. It shouldn't be that difficult. :) Trustin -- what we call human nature is actually human habit -- http://gleamynode.net/ -- PGP Key ID: 0x0255ECA6
