logo
pub trait CheckpointerFactory {
    fn checkpointer(&self) -> Arc<dyn Checkpointer + Sync + Send + 'static>;
}
Available on crate feature metrics only.
Expand description

An interface for producing configured Checkpointer instances.

Required Methods

Creates a new configured checkpointer.

Implementors