Type Alias LibsqlCheckpointer

Source
pub type LibsqlCheckpointer<IO, S> = Checkpointer<WalRegistry<IO, S>>;

Aliased Type§

pub struct LibsqlCheckpointer<IO, S> { /* private fields */ }

Implementations§

Source§

impl<IO, S> LibsqlCheckpointer<IO, S>
where IO: Io, S: Sync + Send + 'static,

Source

pub fn new( registry: Arc<WalRegistry<IO, S>>, notifier: Receiver<CheckpointMessage>, max_checkpointing_conccurency: usize, ) -> Self