コード例 #1
0
ファイル: ServerMain.java プロジェクト: snpamueh/wahlzeit
  public void stopHttpServer(HttpServer httpServer) {
    try {
      httpServer.stop(true);
    } catch (InterruptedException ie) {
      SysLog.logThrowable(ie);
    }

    SysLog.logInfo("http server was stopped");
  }
コード例 #2
0
ファイル: ServerMain.java プロジェクト: snpamueh/wahlzeit
 public static void requestStop() {
   SysLog.logInfo("setting stop signal for http server");
   synchronized (instance) {
     isToStop = true;
     instance.notify();
   }
 }
コード例 #3
0
ファイル: ServerMain.java プロジェクト: snpamueh/wahlzeit
 public void startHttpServer(HttpServer httpServer) throws Exception {
   httpServer.start();
   SysLog.logInfo("http server was started");
 }