コード例 #1
0
 /* ------------------------------------------------------------ */
 public void flushResponse() throws IOException {
   try {
     commitResponse(Generator.MORE);
     _generator.flushBuffer();
   } catch (IOException e) {
     throw (e instanceof EofException) ? e : new EofException(e);
   }
 }