Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\EventDispatcher\Debug; Chris@0: Chris@0: use Symfony\Component\EventDispatcher\EventDispatcherInterface; Chris@0: Chris@0: /** Chris@0: * @author Fabien Potencier Chris@14: * Chris@14: * @method reset() Resets the trace. Chris@0: */ Chris@0: interface TraceableEventDispatcherInterface extends EventDispatcherInterface Chris@0: { Chris@0: /** Chris@0: * Gets the called listeners. Chris@0: * Chris@0: * @return array An array of called listeners Chris@0: */ Chris@0: public function getCalledListeners(); Chris@0: Chris@0: /** Chris@0: * Gets the not called listeners. Chris@0: * Chris@0: * @return array An array of not called listeners Chris@0: */ Chris@0: public function getNotCalledListeners(); Chris@0: }