What is Event?
An Event is something that occurs in a certain place during a particular sequence flow. Say once a customer completes an order, the flow sequence would be to
1. Save the order details 2. Send e-mail confirmation to customer
may be more like before loading a database model, after loading a database model, before saving the cart object and many more
Events may be emitted before or after each of these flow points to introduce custom logic.
An Event is something that occurs in a certain place during a particular sequence flow. Say once a customer completes an order, the flow sequence would be to
1. Save the order details 2. Send e-mail confirmation to customer
may be more like before loading a database model, after loading a database model, before saving the cart object and many more
Events may be emitted before or after each of these flow points to introduce custom logic.