Trait reth_chain_state::CanonStateSubscriptions

source ·
pub trait CanonStateSubscriptions: Send + Sync {
    // Required method
    fn subscribe_to_canonical_state(&self) -> CanonStateNotifications;

    // Provided method
    fn canonical_state_stream(&self) -> CanonStateNotificationStream { ... }
}
Expand description

A type that allows to register chain related event subscriptions.

Required Methods§

source

fn subscribe_to_canonical_state(&self) -> CanonStateNotifications

Get notified when a new canonical chain was imported.

A canonical chain be one or more blocks, a reorg or a revert.

Provided Methods§

source

fn canonical_state_stream(&self) -> CanonStateNotificationStream

Convenience method to get a stream of CanonStateNotification.

Implementations on Foreign Types§

source§

impl<'a, T: 'a + CanonStateSubscriptions + ?Sized> CanonStateSubscriptions for &'a T
where &'a T: Send + Sync,

source§

impl<T: CanonStateSubscriptions + ?Sized> CanonStateSubscriptions for Arc<T>
where Arc<T>: Send + Sync,

Implementors§

source§

impl CanonStateSubscriptions for TestCanonStateSubscriptions

Available on crate feature test-utils only.