tephra 0.1.0

A DCB-compliant, immutable event store with global ordering.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod event;
pub mod index;
pub mod log;
pub mod query;
pub mod read;
pub mod writer;

pub use tephra_types::{
    AppendCondition, EventType, MAX_NAME_LEN, NameError, Position, Query, QueryItem, Tag, Tags,
    TagsError,
};
pub use event::{Event, EventRef};
pub use log::set::{PositionRange, SegmentConfig, SegmentSet};
pub use query::Matches;
pub use read::{ReadConfig, ReadError, ReadHandle, Subscription, WaitOutcome};
pub use writer::{AppendError, ConflictSite, WriteCoordinator, WriteHandle, WriterConfig};