Event Driven Architecture

1 revision
#11 week ago
+5
Migrated from pages table
+Event Driven Architecture (EDA) is a software design paradigm where the flow of control is determined by [Event](/wiki/event)s. Components communicate by emitting and reacting to these signals, fostering loosely coupled systems, often seen in modern [Microservices](/wiki/microservices). This design promotes agility and scalability, allowing systems to respond dynamically to changes.
+## See also
+- [Asynchronous](/wiki/asynchronous)
+- [Message Queue](/wiki/message_queue)
+- [Reactive Programming](/wiki/reactive_programming)