distributed 3.0.0

CQRS/ES framework for Rust using Plain Old Rust Structs — append-only events, replay, snapshots, outbox, service bus, and pluggable infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Saga Pattern Tests
//!
//! This module demonstrates the saga pattern using event sourcing.
//! A saga is an event-sourced aggregate that coordinates a multi-step
//! business process across multiple aggregates, with compensation
//! (rollback) capabilities when steps fail.

mod handlers;
mod microsvc_saga;
mod orchestration;
mod order;