es-entity 0.10.19

Event Sourcing Entity Framework
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;

use super::{artificial::ArtificialClock, realtime::RealtimeClock};

/// Internal clock implementation.
pub(crate) enum ClockInner {
    Realtime(RealtimeClock),
    Artificial(Arc<ArtificialClock>),
}