Copied!

Provides basic proxies for handlers.

  • final
CloneableInstantiable
Methods
public static wrapStreaming(callable $default, callable $streaming) : callable
 

Sends streaming requests to a streaming compatible handler while sending
all other requests to a default handler.

This, for example, could be useful for taking advantage of the
performance benefits of curl while still supporting true streaming
through the StreamHandler.

  • param callable \GuzzleHttp\Promise\PromiseInterface $default Handler used for non-streaming responses
  • param callable \GuzzleHttp\Promise\PromiseInterface $streaming Handler used for streaming responses
  • return callable \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
public static wrapSync(callable $default, callable $sync) : callable
 

Sends synchronous requests to a specific handler while sending all other
requests to another handler.

  • param callable \GuzzleHttp\Promise\PromiseInterface $default Handler used for normal responses
  • param callable \GuzzleHttp\Promise\PromiseInterface $sync Handler used for synchronous responses.
  • return callable \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
Methods
public static wrapStreaming(callable $default, callable $streaming) : callable
 

Sends streaming requests to a streaming compatible handler while sending
all other requests to a default handler.

This, for example, could be useful for taking advantage of the
performance benefits of curl while still supporting true streaming
through the StreamHandler.

  • param callable \GuzzleHttp\Promise\PromiseInterface $default Handler used for non-streaming responses
  • param callable \GuzzleHttp\Promise\PromiseInterface $streaming Handler used for streaming responses
  • return callable \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
public static wrapSync(callable $default, callable $sync) : callable
 

Sends synchronous requests to a specific handler while sending all other
requests to another handler.

  • param callable \GuzzleHttp\Promise\PromiseInterface $default Handler used for normal responses
  • param callable \GuzzleHttp\Promise\PromiseInterface $sync Handler used for synchronous responses.
  • return callable \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
© 2023 Bruce Wells
Search Namespaces \ Classes
Configuration