Prado\Web\UI\ActiveControls\TCallbackResponseWriter::flush PHP Метод

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

Returns the text content wrapped within a HTML comment with boundary identifier as its comment content.
public flush ( ) : string
Результат string text content chunck.
    public function flush()
    {
        $content = parent::flush();
        if (empty($content)) {
            return "";
        }
        return '<!--' . $this->getBoundary() . '-->' . $content . '<!--//' . $this->getBoundary() . '-->';
    }