Enum sc_network_sync::strategy::SyncingStrategy
source · pub enum SyncingStrategy<B: BlockT, Client> {
WarpSyncStrategy(WarpSync<B, Client>),
StateSyncStrategy(StateStrategy<B>),
ChainSyncStrategy(ChainSync<B, Client>),
}
Expand description
Proxy to specific syncing strategies.
Variants§
WarpSyncStrategy(WarpSync<B, Client>)
StateSyncStrategy(StateStrategy<B>)
ChainSyncStrategy(ChainSync<B, Client>)
Implementations§
source§impl<B, Client> SyncingStrategy<B, Client>where
B: BlockT,
Client: HeaderBackend<B> + BlockBackend<B> + HeaderMetadata<B, Error = Error> + ProofProvider<B> + Send + Sync + 'static,
impl<B, Client> SyncingStrategy<B, Client>where
B: BlockT,
Client: HeaderBackend<B> + BlockBackend<B> + HeaderMetadata<B, Error = Error> + ProofProvider<B> + Send + Sync + 'static,
sourcepub fn new(
config: SyncingConfig,
client: Arc<Client>,
warp_sync_config: Option<WarpSyncConfig<B>>
) -> Result<Self, ClientError>
pub fn new( config: SyncingConfig, client: Arc<Client>, warp_sync_config: Option<WarpSyncConfig<B>> ) -> Result<Self, ClientError>
Initialize a new syncing startegy.
sourcepub fn add_peer(
&mut self,
peer_id: PeerId,
best_hash: B::Hash,
best_number: NumberFor<B>
)
pub fn add_peer( &mut self, peer_id: PeerId, best_hash: B::Hash, best_number: NumberFor<B> )
Notify that a new peer has connected.
sourcepub fn remove_peer(&mut self, peer_id: &PeerId)
pub fn remove_peer(&mut self, peer_id: &PeerId)
Notify that a peer has disconnected.
sourcepub fn on_validated_block_announce(
&mut self,
is_best: bool,
peer_id: PeerId,
announce: &BlockAnnounce<B::Header>
) -> Option<(B::Hash, NumberFor<B>)>
pub fn on_validated_block_announce( &mut self, is_best: bool, peer_id: PeerId, announce: &BlockAnnounce<B::Header> ) -> Option<(B::Hash, NumberFor<B>)>
Submit a validated block announcement.
Returns new best hash & best number of the peer if they are updated.
sourcepub fn set_sync_fork_request(
&mut self,
peers: Vec<PeerId>,
hash: &B::Hash,
number: NumberFor<B>
)
pub fn set_sync_fork_request( &mut self, peers: Vec<PeerId>, hash: &B::Hash, number: NumberFor<B> )
Configure an explicit fork sync request in case external code has detected that there is a stale fork missing.
sourcepub fn request_justification(&mut self, hash: &B::Hash, number: NumberFor<B>)
pub fn request_justification(&mut self, hash: &B::Hash, number: NumberFor<B>)
Request extra justification.
sourcepub fn clear_justification_requests(&mut self)
pub fn clear_justification_requests(&mut self)
Clear extra justification requests.
sourcepub fn on_justification_import(
&mut self,
hash: B::Hash,
number: NumberFor<B>,
success: bool
)
pub fn on_justification_import( &mut self, hash: B::Hash, number: NumberFor<B>, success: bool )
Report a justification import (successful or not).
sourcepub fn on_block_response(
&mut self,
peer_id: PeerId,
request: BlockRequest<B>,
blocks: Vec<BlockData<B>>
)
pub fn on_block_response( &mut self, peer_id: PeerId, request: BlockRequest<B>, blocks: Vec<BlockData<B>> )
Process block response.
sourcepub fn on_state_response(
&mut self,
peer_id: PeerId,
response: OpaqueStateResponse
)
pub fn on_state_response( &mut self, peer_id: PeerId, response: OpaqueStateResponse )
Process state response.
sourcepub fn on_warp_proof_response(
&mut self,
peer_id: &PeerId,
response: EncodedProof
)
pub fn on_warp_proof_response( &mut self, peer_id: &PeerId, response: EncodedProof )
Process warp proof response.
sourcepub fn on_blocks_processed(
&mut self,
imported: usize,
count: usize,
results: Vec<(Result<BlockImportStatus<NumberFor<B>>, BlockImportError>, B::Hash)>
)
pub fn on_blocks_processed( &mut self, imported: usize, count: usize, results: Vec<(Result<BlockImportStatus<NumberFor<B>>, BlockImportError>, B::Hash)> )
A batch of blocks have been processed, with or without errors.
sourcepub fn on_block_finalized(&mut self, hash: &B::Hash, number: NumberFor<B>)
pub fn on_block_finalized(&mut self, hash: &B::Hash, number: NumberFor<B>)
Notify a syncing strategy that a block has been finalized.
sourcepub fn update_chain_info(
&mut self,
best_hash: &B::Hash,
best_number: NumberFor<B>
)
pub fn update_chain_info( &mut self, best_hash: &B::Hash, best_number: NumberFor<B> )
Inform sync about a new best imported block.
pub fn is_major_syncing(&self) -> bool
sourcepub fn status(&self) -> SyncStatus<B>
pub fn status(&self) -> SyncStatus<B>
Returns the current sync status.
sourcepub fn num_downloaded_blocks(&self) -> usize
pub fn num_downloaded_blocks(&self) -> usize
Get the total number of downloaded blocks.
sourcepub fn num_sync_requests(&self) -> usize
pub fn num_sync_requests(&self) -> usize
Get an estimate of the number of parallel sync requests.
sourcepub fn report_metrics(&self)
pub fn report_metrics(&self)
Report Prometheus metrics
sourcepub fn actions(&mut self) -> Box<dyn Iterator<Item = SyncingAction<B>>>
pub fn actions(&mut self) -> Box<dyn Iterator<Item = SyncingAction<B>>>
Get actions that should be performed by the owner on the strategy’s behalf
sourcepub fn switch_to_next(
&mut self,
config: SyncingConfig,
client: Arc<Client>,
connected_peers: impl Iterator<Item = (PeerId, B::Hash, NumberFor<B>)>
) -> Result<(), ClientError>
pub fn switch_to_next( &mut self, config: SyncingConfig, client: Arc<Client>, connected_peers: impl Iterator<Item = (PeerId, B::Hash, NumberFor<B>)> ) -> Result<(), ClientError>
Switch to next strategy if the active one finished.
Auto Trait Implementations§
impl<B, Client> !RefUnwindSafe for SyncingStrategy<B, Client>
impl<B, Client> Send for SyncingStrategy<B, Client>
impl<B, Client> !Sync for SyncingStrategy<B, Client>
impl<B, Client> Unpin for SyncingStrategy<B, Client>
impl<B, Client> !UnwindSafe for SyncingStrategy<B, Client>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.