The book and examples indicates that we should use the so-called boss
group and the worker
group when bootstraping the server:
serverBootstrap.group(bossGroup, workerGroup);
And then, in the Vert.x that is based on Netty we have:
bootstrap.group(availableWorkers);
which mean (afaiu) that all workers is going to work the same, so no bosses to handle just the incoming connections.
Why is that?