[][src]Trait sp_consensus::Environment

pub trait Environment<B: BlockT> {
    type Proposer: Proposer<B> + Send + 'static;
    type CreateProposer: Future<Output = Result<Self::Proposer, Self::Error>> + Send + Unpin + 'static;
    type Error: From<Error> + Debug + 'static;
    fn init(&mut self, parent_header: &B::Header) -> Self::CreateProposer;
}

Environment producer for a Consensus instance. Creates proposer instance and communication streams.

Associated Types

type Proposer: Proposer<B> + Send + 'static

The proposer type this creates.

type CreateProposer: Future<Output = Result<Self::Proposer, Self::Error>> + Send + Unpin + 'static

A future that resolves to the proposer.

type Error: From<Error> + Debug + 'static

Error which can occur upon creation.

Loading content...

Required methods

fn init(&mut self, parent_header: &B::Header) -> Self::CreateProposer

Initialize the proposal logic on top of a specific header. Provide the authorities at that header.

Loading content...

Implementors

Loading content...