VesselRs 0.1.0

Shared memory primitives for multi-agent orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Domain Layer
//!
//! Contains core business logic with no external dependencies.
//!
//! ## DDD Principles Applied
//!
//! - **Entities**: Objects with identity (CircuitBreaker, CommandLock)
//! - **Value Objects**: Immutable objects defined by attributes (CircuitState, LockStatus)
//! - **Domain Events**: Immutable events representing state changes

pub mod entities;
pub mod value_objects;
pub mod events;