Is it possible to use a single clientsocketbootstrap to connect to multiple hosts? Also, does each connection get its own pipeline, so one connection can have a certain set of handlers and another its own set of handlers?
bootstrap.connect(serverA, portA);
then, later, after serverA is connected,
bootstrap.connect(serverB, portB);