kaccy-core 0.2.0

Core business logic for Kaccy Protocol - batching, fee optimization, and transaction management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Event system for domain events and real-time notifications

pub mod bus;
pub mod payload;
pub mod persistence;
pub mod sourcing;
pub mod subscriber;
pub mod types;

pub use bus::{EventBus, EventDispatcher};
pub use payload::EventPayload;
pub use persistence::{EventStore, PersistedEvent};
pub use sourcing::{
    AggregateRoot, DomainEvent, DomainEventStore, EventMetadata, EventSourcedRepository, Snapshot,
    StoredEvent,
};
pub use subscriber::{EventSubscriber, SubscriberHandle};
pub use types::*;