Sin categoría

Implementing Event-Driven in .Net Core 5

The event-driven is an architecture that uses events to communicate changes of states to applications that are interested in different events.

This type of architecture decouples services by using Service buses. This allows the services involved to be scaled, updated, and deployed independently.

This post will explain how to implement an event-driven architecture with MassTransit (a library to configure and send events messages to a Message broker) and RabbitMQ (a message broker that handles events messages).

Continue reading