flushContent() public method

Default implementation calls the attached response flushContent method.
public flushContent ( )
 /**
  * Flushes the contents in the writers.
  */
 public function flushContent()
 {
     foreach ($this->_writers as $writer) {
         echo $writer->flush();
     }
     parent::flushContent();
 }