[−][src]Trait sp_consensus::import_queue::ImportQueue
Blocks import queue API.
The import_*
methods can be called in order to send elements for the import queue to verify.
Afterwards, call poll_actions
to determine how to respond to these elements.
Required methods
pub fn import_blocks(
&mut self,
origin: BlockOrigin,
blocks: Vec<IncomingBlock<B>>
)
[src]
&mut self,
origin: BlockOrigin,
blocks: Vec<IncomingBlock<B>>
)
Import bunch of blocks.
pub fn import_justification(
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
justification: Justification
)
[src]
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
justification: Justification
)
Import a block justification.
pub fn import_finality_proof(
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
finality_proof: Vec<u8>
)
[src]
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
finality_proof: Vec<u8>
)
Import block finality proof.
pub fn poll_actions(&mut self, cx: &mut Context<'_>, link: &mut dyn Link<B>)
[src]
Polls for actions to perform on the network.
This method should behave in a way similar to Future::poll
. It can register the current
task and notify later when more actions are ready to be polled. To continue the comparison,
it is as if this method always returned Poll::Pending
.
Implementors
impl<B: BlockT, Transaction: Send> ImportQueue<B> for BasicQueue<B, Transaction>
[src]
pub fn import_blocks(
&mut self,
origin: BlockOrigin,
blocks: Vec<IncomingBlock<B>>
)
[src]
&mut self,
origin: BlockOrigin,
blocks: Vec<IncomingBlock<B>>
)
pub fn import_justification(
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
justification: Justification
)
[src]
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
justification: Justification
)
pub fn import_finality_proof(
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
finality_proof: Vec<u8>
)
[src]
&mut self,
who: Origin,
hash: B::Hash,
number: NumberFor<B>,
finality_proof: Vec<u8>
)