コード例 #1
0
 private void serveRequest(Socket connectionSocket) {
   try {
     GeneralRequestHandler handler =
         new GeneralRequestHandler(connectionSocket, config_map, cache);
     handler.processRequest();
   } catch (Exception e) {
     Debug.debug(e.toString());
     System.out.println("Exception happened in Thread " + this);
   }
 }