timesource 0.1.3

Event sourcing with TimescaleDb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Contains a persisted implementation of the [`Consumer`] trait
//! using Postgres as the backend data source for its state.
//!
//! [`Consumer`]: ../../eventually-core/consumer/trait.Consumer.html

mod listener;
mod notification;
pub mod store;
mod sub;
#[cfg(test)]
mod test_util;

pub use self::store::aggregate::*;
pub use self::store::aggregate_root::*;
pub use self::sub::persistent::{Consumer, ConsumerBuilder};
pub use self::sub::transient::{TransientConsumer, TransientConsumerBuilder};