Trait sp_consensus::SyncOracle [−][src]
pub trait SyncOracle { fn is_major_syncing(&mut self) -> bool; fn is_offline(&mut self) -> bool; }
An oracle for when major synchronization work is being undertaken.
Generally, consensus authoring work isn’t undertaken while well behind the head of the chain.
Required methods
fn is_major_syncing(&mut self) -> bool
[src]
Whether the synchronization service is undergoing major sync. Returns true if so.
fn is_offline(&mut self) -> bool
[src]
Whether the synchronization service is offline. Returns true if so.
Implementations on Foreign Types
impl<T> SyncOracle for Arc<T> where
T: ?Sized,
&'r T: SyncOracle,
[src]
impl<T> SyncOracle for Arc<T> where
T: ?Sized,
&'r T: SyncOracle,
[src]fn is_major_syncing(&mut self) -> bool
[src]
fn is_offline(&mut self) -> bool
[src]
Implementors
impl SyncOracle for NoNetwork
[src]
impl SyncOracle for NoNetwork
[src]