public void listen(int backlog) {
ServerBootstrap bootstrap = new ServerBootstrap();
bootstrap.group(this.process.getEventLoop().getEventLoopGroup());
bootstrap.channel(NioServerSocketChannel.class);
bootstrap.childHandler(new ChannelInitializer<Channel>() {
@Override
protected void initChannel(Channel ch) throws Exception {
ch.config().setAutoRead(false);
// ch.pipeline().addLast("debug", new DebugHandler("server"));
ch.pipeline().addLast("emit.connection", new ConnectionEventHandler(TCPWrap.this.process, TCPWrap.this));