Skip to main content

TimestampSource

Type Alias TimestampSource 

Source
pub type TimestampSource = Box<dyn FnMut() -> HlcTimestamp + Send>;
Expand description

An injectable source of commit timestamps for InMemoryCommitLog.

The source is called once per accepted proposal, under the log lock, and should be non-decreasing so commit timestamps order with log positions.

Aliased Typeยง

pub struct TimestampSource(/* private fields */);