I noticed that there doesn't seem to be a way to programatically retrieve a way to get the port a ServerImpl is listening on. Could we add a method that provides this information?
I would argue it's useful for when one wants to bind to port 0 i.e.
ServerImpl server = NettyServerBuilder.build();
server.start()
System.out.println("Server listening on port " + server.getPort());