Event
Edit on GitHubThe Event module implements an Observer pattern where you can add hooks (events) to your code and allow other modules to listen and react to those events.
There are two methods:
- Traditional Synchronous where listeners are handled at the same time as they are dispatched
- Asynchronous (Queueable) where events are put into a queue and handled later by some queue service.
Thank you!
For submitting the form