Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 402] [Versions 310 and 403]

Http Streams based implementation of Google_IO.

Author: Stuart Langley <slangley@google.com>
File Size: 243 lines (7 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Google_IO_Stream:: (8 methods):
  __construct()
  executeRequest()
  setOptions()
  trapError()
  setTimeout()
  getTimeout()
  needsQuirk()
  getHttpResponseCode()


Class: Google_IO_Stream  - X-Ref

__construct(Google_Client $client)   X-Ref
No description

executeRequest(Google_Http_Request $request)   X-Ref
Execute an HTTP Request

param: Google_Http_Request $request the http request to be executed
return: array containing response headers, body, and http code

setOptions($options)   X-Ref
Set options that update the transport implementation's behavior.

param: $options

trapError($errno, $errstr)   X-Ref
Method to handle errors, used for error handling around
stream connection methods.


setTimeout($timeout)   X-Ref
Set the maximum request time in seconds.

param: $timeout in seconds

getTimeout()   X-Ref
Get the maximum request time in seconds.

return: timeout in seconds

needsQuirk()   X-Ref
Test for the presence of a cURL header processing bug

{@inheritDoc}

return: boolean

getHttpResponseCode($response_headers)   X-Ref
No description