actionqueue-storage 0.1.2

WAL, snapshot, and recovery storage layer for the ActionQueue task queue engine.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Storage-owned mutation authority surfaces.
//!
//! Durable lifecycle mutations must route through the authority lane defined in
//! [`authority`]. Replay reducers remain replay-only projection components.

pub mod authority;

pub use authority::{
    MutationAuthorityError, MutationProjection, MutationValidationError, StorageMutationAuthority,
};