interface TraceableEventDispatcherInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php \Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcherInterface
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\EventDispatcher\EventDispatcherInterface
- interface \Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcherInterface
Expanded class hierarchy of TraceableEventDispatcherInterface
All classes that implement TraceableEventDispatcherInterface
2 files declare their use of TraceableEventDispatcherInterface
- EventDataCollector.php in vendor/
symfony/ http-kernel/ DataCollector/ EventDataCollector.php - TestEventDispatcher.php in vendor/
symfony/ http-kernel/ Tests/ Fixtures/ TestEventDispatcher.php
File
- vendor/
symfony/ event-dispatcher/ Debug/ TraceableEventDispatcherInterface.php, line 19
Namespace
Symfony\Component\EventDispatcher\DebugView source
interface TraceableEventDispatcherInterface extends EventDispatcherInterface {
/**
* Gets the called listeners.
*
* @return array An array of called listeners
*/
public function getCalledListeners();
/**
* Gets the not called listeners.
*
* @return array An array of not called listeners
*/
public function getNotCalledListeners();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EventDispatcherInterface:: |
public | function | Adds an event listener that listens on the specified events. | 4 |
EventDispatcherInterface:: |
public | function | Adds an event subscriber. | 4 |
EventDispatcherInterface:: |
public | function | Dispatches an event to all registered listeners. | 4 |
EventDispatcherInterface:: |
public | function | Gets the listeners of a specific event or all listeners sorted by descending priority. | 4 |
EventDispatcherInterface:: |
public | function | Checks whether an event has any registered listeners. | 4 |
EventDispatcherInterface:: |
public | function | Removes an event listener from the specified events. | 4 |
EventDispatcherInterface:: |
public | function | Removes an event subscriber. | 4 |
TraceableEventDispatcherInterface:: |
public | function | Gets the called listeners. | 2 |
TraceableEventDispatcherInterface:: |
public | function | Gets the not called listeners. | 2 |