Say I&#39;ve got a ChannelHandler that acts upstream of the  the HTTP code handlers.   Within messageReceived() I&#39;m handling an HTTP request.  While I&#39;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&#39;m still processing the first one)? Or will the second messageReceived() not be invoked until the first completes? <br>
<br>Thanks.<br>