1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// TODO - Seems like it would be nice to clean these things up, rather than ignoring them
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(unused_variables)]

mod error;
mod shard;
mod upstream;
pub mod upstreams;

pub use self::error::{ShardError, UpstreamError};
pub use self::shard::{
    service_builder, Commit, DefaultCommitPolicy, MutableServiceHandle, RuntimeMode, ServiceBuilder,
    ServiceHandle, ShardShutdownStats, ShardStats, ShutdownHandle, ShutdownResult,
};
pub use self::upstream::{
    CommitToUpstream, DataCommitRequest, DataLoadRequest, LoadFromUpstream, MutableUpstreamFactory,
    OwnedDataCommitRequest, ProcessingDataCommitRequest, ServiceData, UpstreamFactory,
};