wrapSync()
wrapSync(callable $default, callable $sync) : callable
Sends synchronous requests to a specific handler while sending all other requests to another handler.
Parameters
callable | $default | |
callable | $sync |
Provides basic proxies for handlers.
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.
callable | $default | |
callable | $streaming |