pub trait CheckpointerFactory {
    // Required method
    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§

source

fn checkpointer(&self) -> Arc<dyn Checkpointer + Sync + Send + 'static>

Creates a new configured checkpointer.

Implementors§