public void stopHttpServer(HttpServer httpServer) { try { httpServer.stop(true); } catch (InterruptedException ie) { SysLog.logThrowable(ie); } SysLog.logInfo("http server was stopped"); }
public static void requestStop() { SysLog.logInfo("setting stop signal for http server"); synchronized (instance) { isToStop = true; instance.notify(); } }
public void startHttpServer(HttpServer httpServer) throws Exception { httpServer.start(); SysLog.logInfo("http server was started"); }