I have a Netty 4 application that is receiving messages at high throughput using a single network connection (or to be precise, a single IP multicast group), so processing of all channel handlers in the pipeline is basically single-threaded.
Is there a way to configure Netty to parallelize processing so that more than 1 core gets used? I'm thinking of the "pipelining pattern" of multi-threading aka synchronous concurrency. Is something like that built-in - or would I have to implement this myself, off the Netty pipeline?