pub trait BlockImporter: Send + Sync {
    // Required method
    fn block_events(&self) -> BoxStream<Arc<ImportResult>>;
}

Required Methods§

source

fn block_events(&self) -> BoxStream<Arc<ImportResult>>

Wait until the next block is available

Implementors§