CheckpointOutput

Trait CheckpointOutput 

Source
pub trait CheckpointOutput:
    Sync
    + Send
    + 'static {
    // Required method
    fn checkpoint_created<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 self,
        summary: &'life1 CheckpointSummary,
        contents: &'life2 CheckpointContents,
        epoch_store: &'life3 Arc<AuthorityPerEpochStore>,
        checkpoint_store: &'life4 Arc<CheckpointStore>,
    ) -> Pin<Box<dyn Future<Output = SuiResult> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait;
}

Required Methods§

Source

fn checkpoint_created<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>( &'life0 self, summary: &'life1 CheckpointSummary, contents: &'life2 CheckpointContents, epoch_store: &'life3 Arc<AuthorityPerEpochStore>, checkpoint_store: &'life4 Arc<CheckpointStore>, ) -> Pin<Box<dyn Future<Output = SuiResult> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait,

Implementors§