Files
neon/zenith_utils/src/lib.rs
Heikki Linnakangas bc652e965e Save old 'async' version of SeqWait, in case we need it later.
It is currently unused, and is not built as part of 'cargo build', but
seems like a shame to throw it away completely.
2021-04-26 13:30:10 +03:00

11 lines
349 B
Rust

//! zenith_utils is intended to be a place to put code that is shared
//! between other crates in this repository.
/// `Lsn` type implements common tasks on Log Sequence Numbers
pub mod lsn;
/// SeqWait allows waiting for a future sequence number to arrive
pub mod seqwait;
// Async version of SeqWait. Currently unused.
// pub mod seqwait_async;