this.logger.info("Bootstrapping server");
this.serverBootstrap = new ServerBootstrap();
this.boss = new NioEventLoopGroup();
this.worker = new NioEventLoopGroup();
this.serverBootstrap.group(this.boss, this.worker)
.channel(NioServerSocketChannel.class)
.localAddress(new InetSocketAddress(this.serverEnvironment.getAddress(), this.serverEnvironment.getPort()))
.childHandler(new ServerInitializer(this.serverEnvironment));