Interface EventDispatcherInterface
Objects implementing this interface can emit events.
Objects with this interface can trigger events, and have an event manager retrieved from them.
The {@link \Cake\Event\EventDispatcherTrait} lets you easily implement this interface.
Method Summary
- 
          dispatchEvent() publicWrapper for creating and dispatching events. 
- 
          getEventManager() publicReturns the Cake\Event\EventManager manager instance for this object. 
- 
          setEventManager() publicSets the Cake\Event\EventManager manager instance for this object. 
Method Detail
dispatchEvent() ¶ public
dispatchEvent(string $name, array $data = [], TSubject|null $subject = null): Cake\Event\EventInterface<TSubject>Wrapper for creating and dispatching events.
Returns a dispatched event.
Parameters
- 
                string$name
- Name of the event. 
- 
                array$data optional
- Any value you wish to be transported with this event to it can be read by listeners. 
- 
                TSubject|null$subject optional
- The object that this event applies to ($this by default). 
Returns
Cake\Event\EventInterface<TSubject>getEventManager() ¶ public
getEventManager(): Cake\Event\EventManagerInterfaceReturns the Cake\Event\EventManager manager instance for this object.
Returns
Cake\Event\EventManagerInterfacesetEventManager() ¶ public
setEventManager(Cake\Event\EventManagerInterface $eventManager): $thisSets the Cake\Event\EventManager manager instance for this object.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Parameters
- 
                Cake\Event\EventManagerInterface$eventManager
- the eventManager to set 
Returns
$this