Development Methods & Design

Event-Driven Architecture

English

Overview

A system design where services are loosely coupled, communicating through the occurrence of "events."

Details

One service publishes a state change as an "event," and other services subscribed to it process it asynchronously. It reduces direct dependencies between services and makes the system easier to extend.

More Programming terms