Open Journal Systems
3.3.0
|
Public Member Functions | |
onBeforeSend (Event $event) | |
onCurlProgress (Event $event) | |
onRequestSent (Event $event) | |
onRequestTimeout (Event $event) | |
Static Public Member Functions | |
static | getSubscribedEvents () |
Sends requests but does not wait for the response
Definition at line 13 of file AsyncPlugin.php.
|
static |
Returns an array of event names this subscriber wants to listen to.
The array keys are event names and the value can be:
For instance:
Implements Symfony\Component\EventDispatcher\EventSubscriberInterface.
Definition at line 15 of file AsyncPlugin.php.
Referenced by Guzzle\Tests\Plugin\Async\AsyncPluginTest\testSubscribesToEvents().
Guzzle\Plugin\Async\AsyncPlugin::onBeforeSend | ( | Event | $event | ) |
Event used to ensure that progress callback are emitted from the curl handle's request mediator.
Event | $event |
Definition at line 30 of file AsyncPlugin.php.
Guzzle\Plugin\Async\AsyncPlugin::onCurlProgress | ( | Event | $event | ) |
Event emitted when a curl progress function is called. When the amount of data uploaded == the amount of data to upload OR any bytes have been downloaded, then time the request out after 1ms because we're done with transmitting the request, and tell curl not download a body.
Event | $event |
Definition at line 43 of file AsyncPlugin.php.
Guzzle\Plugin\Async\AsyncPlugin::onRequestSent | ( | Event | $event | ) |
Event emitted when a request completes because it took less than 1ms. Add an X-Guzzle-Async header to notify the caller that there is no body in the message.
Event | $event |
Definition at line 79 of file AsyncPlugin.php.
Guzzle\Plugin\Async\AsyncPlugin::onRequestTimeout | ( | Event | $event | ) |
Event emitted when a curl exception occurs. Ignore the exception and set a mock response.
Event | $event |
Definition at line 64 of file AsyncPlugin.php.