tirea-store-adapters 0.2.0

Thread store adapter implementations for tirea
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Thread store adapter implementations for tirea.

pub mod file_store;
pub mod memory_store;
#[cfg(feature = "nats")]
pub mod nats_buffered;
#[cfg(feature = "postgres")]
pub mod postgres_store;

pub use file_store::FileStore;
pub use memory_store::MemoryStore;
#[cfg(feature = "nats")]
pub use nats_buffered::{NatsBufferedThreadWriter, NatsBufferedThreadWriterError};
#[cfg(feature = "postgres")]
pub use postgres_store::PostgresStore;