Say I've got a ChannelHandler that acts upstream of the the HTTP code handlers. Within messageReceived() I'm handling an HTTP request. While I'm in messageReceived(), can messageReceived be invoked *for the same Channel* in another thread (a pipelined HTTP request comes in on the same connection while I'm still processing the first one)? Or will the second messageReceived() not be invoked until the first completes? <br>
<br>Thanks.<br>