Open Journal Systems
3.3.0
|
Public Member Functions | |
getDispatcher () | |
getDispatcher () | |
getName () | |
getName () | |
isPropagationStopped () | |
isPropagationStopped () | |
setDispatcher (EventDispatcherInterface $dispatcher) | |
setDispatcher (EventDispatcherInterface $dispatcher) | |
setName ($name) | |
setName ($name) | |
stopPropagation () | |
stopPropagation () | |
Event is the base class for classes containing event data.
This class contains no event data. It is used by events that do not pass state information to an event handler when an event is raised.
You can call the method stopPropagation() to abort the execution of further listeners in your event listener.
Definition at line 28 of file lib/vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::getDispatcher | ( | ) |
Returns the EventDispatcher that dispatches this Event.
Definition at line 97 of file lib/vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::getDispatcher | ( | ) |
Returns the EventDispatcher that dispatches this Event.
Definition at line 97 of file vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::getName | ( | ) |
Gets the event's name.
Definition at line 111 of file lib/vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::getName | ( | ) |
Gets the event's name.
Definition at line 111 of file vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::isPropagationStopped | ( | ) |
Returns whether further event listeners should be triggered.
Definition at line 61 of file lib/vendor/symfony/event-dispatcher/Event.php.
Referenced by Symfony\Component\EventDispatcher\Debug\WrappedListener\__invoke(), and Symfony\Component\EventDispatcher\EventDispatcher\doDispatch().
Symfony\Component\EventDispatcher\Event::isPropagationStopped | ( | ) |
Returns whether further event listeners should be triggered.
Definition at line 61 of file vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::setDispatcher | ( | EventDispatcherInterface | $dispatcher | ) |
Stores the EventDispatcher that dispatches this Event.
EventDispatcherInterface | $dispatcher |
Definition at line 85 of file vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::setDispatcher | ( | EventDispatcherInterface | $dispatcher | ) |
Stores the EventDispatcher that dispatches this Event.
EventDispatcherInterface | $dispatcher |
Definition at line 85 of file lib/vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::setName | ( | $name | ) |
Sets the event's name property.
string | $name | The event name |
Definition at line 125 of file vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::setName | ( | $name | ) |
Sets the event's name property.
string | $name | The event name |
Definition at line 125 of file lib/vendor/symfony/event-dispatcher/Event.php.
Symfony\Component\EventDispatcher\Event::stopPropagation | ( | ) |
Stops the propagation of the event to further event listeners.
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().
Definition at line 73 of file lib/vendor/symfony/event-dispatcher/Event.php.
Referenced by Guzzle\Plugin\Cache\CachePlugin\onRequestError(), Guzzle\Plugin\Cache\CachePlugin\onRequestException(), Symfony\Component\EventDispatcher\Tests\TestEventListener\postFoo(), Guzzle\Service\Command\CreateResponseClassEvent\setResult(), and Symfony\Component\EventDispatcher\Tests\Debug\TraceableEventDispatcherTest\testLoggerWithStoppedEvent().
Symfony\Component\EventDispatcher\Event::stopPropagation | ( | ) |
Stops the propagation of the event to further event listeners.
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().
Definition at line 73 of file vendor/symfony/event-dispatcher/Event.php.