Limiting the Client to use only one thread allows for better scalability when you want to launch multiple clients from a single machine.
I'm not sure if in this case it is better to use NioEventLoop instead (which is a SingleThreadEventLoop) because I have never worked with Netty before.
Limiting the Client to use only one thread allows for better scalability when you want to launch multiple clients from a single machine.
I'm not sure if in this case it is better to use
NioEventLoop
instead (which is aSingleThreadEventLoop
) because I have never worked with Netty before.