You are here

interface TraceableEventDispatcherInterface in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php \Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcherInterface

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

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\Debug
View 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

Namesort descending Modifiers Type Description Overrides
EventDispatcherInterface::addListener public function Adds an event listener that listens on the specified events. 4
EventDispatcherInterface::addSubscriber public function Adds an event subscriber. 4
EventDispatcherInterface::dispatch public function Dispatches an event to all registered listeners. 4
EventDispatcherInterface::getListeners public function Gets the listeners of a specific event or all listeners sorted by descending priority. 4
EventDispatcherInterface::hasListeners public function Checks whether an event has any registered listeners. 4
EventDispatcherInterface::removeListener public function Removes an event listener from the specified events. 4
EventDispatcherInterface::removeSubscriber public function Removes an event subscriber. 4
TraceableEventDispatcherInterface::getCalledListeners public function Gets the called listeners. 2
TraceableEventDispatcherInterface::getNotCalledListeners public function Gets the not called listeners. 2