You are here

public function ResourceStreamWrapper::stream_flush in D7 Media 6

Support for fflush().

Return value

TRUE if data was successfully stored (or there was no data to store).

Overrides StreamWrapperInterface::stream_flush

File

resource/ResourceStreamWrapper.inc, line 177

Class

ResourceStreamWrapper
A base class for Resource Stream Wrappers.

Code

public function stream_flush() {
  return fflush($this->handle);
}