Jackalope\BinaryStreamWrapper::stream_flush PHP Method

stream_flush() public method

Flush all data written to this stream if the stream was initialized.
public stream_flush ( )
    public function stream_flush()
    {
        if ($this->stream) {
            return fflush($this->stream);
        }
        return false;
    }