public static function IoEmittingEntityBody::getAllEvents

Get a list of all of the events emitted from the class

Return value

array

Overrides HasDispatcherInterface::getAllEvents

File

drupal/core/vendor/guzzle/http/Guzzle/Http/IoEmittingEntityBody.php, line 24

Class

IoEmittingEntityBody
EntityBody decorator that emits events for read and write methods

Namespace

Guzzle\Http

Code

public static function getAllEvents() {
  return array(
    'body.read',
    'body.write',
  );
}