If a NioEventLoopGroup
is used as a workerGroup
, messages after ByteToMessageDecoder
handler (for a single connection) are processed in a sequential (single threaded) way by following handlers within NioEventLoop
.
Is it possible to make them to be processed by another «workers» after ByteToMessageDecoder
handler?