Prado\Web\THttpResponseAdapter::flushContent PHP Метод

flushContent() публичный Метод

Default implementation calls the attached response flushContent method.
public flushContent ( )
    public function flushContent()
    {
        $this->_response->flushContent();
    }

Usage Example

Пример #1
0
 /**
  * Flushes the contents in the writers.
  */
 public function flushContent()
 {
     foreach ($this->_writers as $writer) {
         echo $writer->flush();
     }
     parent::flushContent();
 }