示例#1
0
 private function flush()
 {
     if ($this->record && $this->out != null) {
         $this->out->flush();
     }
 }
示例#2
0
 /**
  * Flushes this output stream and forces any buffered output bytes to be written out to the stream. 
  * The flush method of FilterOutputStream calls the flush method of its underlying output stream. 
  *
  * @overrides flush in class OutputStream
  * @throws IOException If an I/O error occurs.
  * @see out
  */
 public function flush()
 {
     parent::flush();
 }
 /**
  * Flush output to the stream.
  */
 public function flush()
 {
     $this->outStream->flush();
 }