pub trait ReconfigObserver<A: Clone> {
    // Required methods
    fn run<'life0, 'async_trait>(
        &'life0 mut self,
        quorum_driver: Arc<QuorumDriver<A>>
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn clone_boxed(&self) -> Box<dyn ReconfigObserver<A> + Send + Sync>;
}

Required Methods§

source

fn run<'life0, 'async_trait>( &'life0 mut self, quorum_driver: Arc<QuorumDriver<A>> ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn clone_boxed(&self) -> Box<dyn ReconfigObserver<A> + Send + Sync>

Implementors§