Skip to main content

19 docs tagged with "event-driven"

View all tags

Domain Events

Record important business occurrences that others should know about

Event Sourcing

Store the complete history of changes as immutable events rather than storing only the current state.

Messaging Patterns

Master message queues, publish-subscribe, and event streams. Choose the right pattern for your asynchronous communication.

Proactor Pattern

Simplify asynchronous I/O by letting the framework manage event notifications and completion handlers.

Programming Paradigms

How to choose and combine programming paradigms per component to meet quality attributes like latency, correctness, and evolvability.

Reactor Pattern

Multiplex I/O events across many connections using a single-threaded event-driven architecture.

Webhooks and Callbacks

Master event-driven integrations: webhooks for server-initiated callbacks, signing for security, and handling idempotency and retries.