Szukaj…


Składnia

  • $ dispatcher-> dispatch (ciąg $ eventName, Event $ event);
  • $ dispatcher-> addListener (ciąg $ eventName, wywoływalny $ listener, int $ priorytet = 0);
  • $ dispatcher-> addSubscriber (EventSubscriberInterface $ subscriber);

Uwagi

  • Często najlepiej jest użyć pojedynczej instancji EventDispatcher w aplikacji, którą wstrzykujesz do obiektów, które wymagają uruchomienia zdarzeń.
  • Najlepszą praktyką jest posiadanie jednej lokalizacji, w której zarządzasz konfiguracją i dodajesz detektory zdarzeń do swojego EventDispatcher. Struktura Symfony używa kontenera wstrzykiwania zależności.
  • Te wzorce pozwolą ci łatwo zmienić detektory zdarzeń bez potrzeby zmiany kodu dowolnego modułu, który wywołuje zdarzenia.
  • Oddzielenie wysyłania zdarzeń od konfiguracji detektora zdarzeń sprawia, że Symfony EventDispatcher jest tak potężny
  • EventDispatcher pomaga spełnić zasadę otwartej / zamkniętej.

Dyspozytor zdarzeń Szybki start

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);

Subskrybenci wydarzeń

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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow