You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/docs/en/Event-Bus.md

10 lines
516 B

# Event Bus
An event bus is a mediator that transfers a message from a sender to a receiver. In this way, it provides a loosely coupled communication way between objects, services and applications.
## Event Bus Types
ABP Framework provides two type of event buses;
* **[Local Event Bus](Local-Event-Bus.md)** is suitable for in-process messaging.
* **[Distributed Event Bus](Distributed-Event-Bus.md)** is suitable for inter-process messaging, like microservices publishing and subscribing to distributed events.