public
|
#
__construct( GuzzleHttp\Promise\PromiseInterface $promise )
|
public
GuzzleHttp\Promise\PromiseInterface
|
#
getPromise( )
Returns
GuzzleHttp\Promise\PromiseInterface
Implementation of
|
public
Commercetools\Core\Client\Adapter\AdapterPromiseInterface
|
#
then( callable $onFulfilled = null, callable $onRejected = null )
Parameters
Returns
Implementation of
|
public
Psr\Http\Message\ResponseInterface
|
#
wait( )
Returns
Psr\Http\Message\ResponseInterface
Implementation of
|
public
string
|
#
getProtocolVersion( )
Retrieves the HTTP protocol version as a string.
Retrieves the HTTP protocol version as a string.
The string MUST contain only the HTTP version number (e.g., "1.1", "1.0").
Returns
string HTTP protocol version.
|
public
Commercetools\Core\Client\Adapter\Guzzle6Promise
|
#
withProtocolVersion( string $version )
Return an instance with the specified HTTP protocol version.
Return an instance with the specified HTTP protocol version.
The version string MUST contain only the HTTP version number (e.g.,
"1.1", "1.0").
This method MUST be implemented in such a way as to retain the
immutability of the message, and MUST return an instance that has the
new protocol version.
Parameters
- $version
- HTTP protocol version
Returns
|
public
Psr\Http\Message\StreamInterface
|
#
getBody( )
Gets the body of the message.
Gets the body of the message.
Returns
Psr\Http\Message\StreamInterface Returns the body as a stream.
|
public
Commercetools\Core\Client\Adapter\Guzzle6Promise
|
#
withBody( Psr\Http\Message\StreamInterface $body )
Return an instance with the specified message body.
Return an instance with the specified message body.
The body MUST be a StreamInterface object.
This method MUST be implemented in such a way as to retain the
immutability of the message, and MUST return a new instance that has the
new body stream.
Parameters
Returns
Throws
InvalidArgumentException When the body is not valid.
|
public
integer
|
#
getStatusCode( )
Gets the response status code.
Gets the response status code.
The status code is a 3-digit integer result code of the server's attempt
to understand and satisfy the request.
Returns
integer Status code.
|
public
Commercetools\Core\Client\Adapter\Guzzle6Promise
|
#
withStatus( integer $code, string $reasonPhrase = '' )
Return an instance with the specified status code and, optionally, reason phrase.
Return an instance with the specified status code and, optionally, reason phrase.
If no reason phrase is specified, implementations MAY choose to default
to the RFC 7231 or IANA recommended reason phrase for the response's
status code.
This method MUST be implemented in such a way as to retain the
immutability of the message, and MUST return an instance that has the
updated status and reason phrase.
Parameters
- $code
- The 3-digit integer result code to set.
- $reasonPhrase
The reason phrase to use with the
provided status code; if none is provided, implementations MAY
use the defaults as suggested in the HTTP specification.
Returns
Throws
InvalidArgumentException For invalid status code arguments.
Link
|
public
string
|
#
getReasonPhrase( )
Gets the response reason phrase associated with the status code.
Gets the response reason phrase associated with the status code.
Because a reason phrase is not a required element in a response
status line, the reason phrase value MAY be null. Implementations MAY
choose to return the default RFC 7231 recommended reason phrase (or those
listed in the IANA HTTP Status Code Registry) for the response's
status code.
Returns
string Reason phrase; must return an empty string if none present.
Link
|