Get a list of all of the events emitted from the class
array
Overrides HasDispatcherInterface::getAllEvents
public static function getAllEvents() {
return array(
// Called when receiving or uploading data through cURL
'curl.callback.read',
'curl.callback.write',
'curl.callback.progress',
// Cloning a request
'request.clone',
// About to send the request, sent request, completed transaction
'request.before_send',
'request.sent',
'request.complete',
// A request received a successful response
'request.success',
// A request received an unsuccessful response
'request.error',
// An exception is being thrown because of an unsuccessful response
'request.exception',
// Received response status line
'request.receive.status_line',
// Manually set a response
'request.set_response',
);
}