Lines Matching defs:read
7 * Stream decorator that can cache previously read bytes from a sequentially
8 * read stream.
54 // You cannot skip ahead past where you've read from the remote stream
67 public function read($length)
69 // Perform a regular read on any previously read data from the buffer
70 $data = $this->stream->read($length);
73 // More data was requested so read from the remote stream
79 $remoteData = $this->remoteStream->read(
98 // When appending to the end of the currently read stream, you'll want
99 // to skip bytes from being read from the remote stream to emulate