You are here

public function DrupalRemoteStreamWrapper::stream_flush in Remote Stream Wrapper 7

Support for fflush().

Return value

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

Overrides StreamWrapperInterface::stream_flush

See also

http://php.net/manual/en/streamwrapper.stream-flush.php

File

./remote_stream_wrapper.inc, line 246

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

public function stream_flush() {
  return TRUE;
}