131132133134135136137138
.format( "Starting blocking thread pool server for control server on port %d...", port)); SpecificResponder res = new SpecificResponder(AvroFlumeClientServer.class, this); this.server = new HttpServer(res, port); this.server.start(); }
153154155156157158159160
* Starts the Avro Report Server */ public void serve() throws IOException { SpecificResponder res = new SpecificResponder(AvroFlumeReportServer.class, this); this.http = new HttpServer(res, port); this.http.start(); }