Buscar..
Sintaxis
- $ dispatcher-> dispatch (string $ eventName, Event $ event);
- $ dispatcher-> addListener (cadena $ eventName, callable $ listener, int $ priority = 0);
- $ dispatcher-> addSubscriber (suscriptor EventSubscriberInterface $);
Observaciones
- A menudo es mejor usar una sola instancia de EventDispatcher en su aplicación que inyecte en los objetos que necesitan disparar eventos.
- Es una práctica recomendada tener una única ubicación en la que gestione la configuración y agregue escuchas de eventos a su EventDispatcher. El framework Symfony usa el Depósito de Inyección de Dependencias.
- Estos patrones le permitirán cambiar fácilmente sus escuchas de eventos sin necesidad de cambiar el código de cualquier módulo que esté enviando eventos.
- El desacoplamiento del envío de eventos de la configuración del detector de eventos es lo que hace que Symfony EventDispatcher sea tan poderoso
- EventDispatcher lo ayuda a satisfacer el principio abierto / cerrado.
Inicio rápido del despachador de eventos
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Component\EventDispatcher\GenericEvent;
// you may store this in a dependency injection container for use as a service
$dispatcher = new EventDispatcher();
// you can attach listeners to specific events directly with any callable
$dispatcher->addListener('an.event.occurred', function(Event $event) {
// process $event
});
// somewhere in your system, an event happens
$data = // some important object
$event = new GenericEvent($data, ['more' => 'event information']);
// dispatch the event
// our listener on "an.event.occurred" above will be called with $event
// we could attach many more listeners to this event, and they too would be called
$dispatcher->dispatch('an.event.occurred', $event);
Suscriptores de eventos
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\EventDispatcher\Event;
$dispatcher = new EventDispatcher();
// you can attach event subscribers, which allow a single object to subscribe
// to many events at once
$dispatcher->addSubscriber(new class implements EventSubscriberInterface {
public static function getSubscribedEvents()
{
// here we subscribe our class methods to listen to various events
return [
// when anything fires a "an.event.occurred" call "onEventOccurred"
'an.event.occurred' => 'onEventOccurred',
// an array of listeners subscribes multiple methods to one event
'another.event.happened' => ['whenAnotherHappened', 'sendEmail'],
];
}
function onEventOccurred(Event $event) {
// process $event
}
function whenAnotherHappened(Event $event) {
// process $event
}
function sendEmail(Event $event) {
// process $event
}
});
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow