Trait reth::core::rpc::eth::EthPubSubApiServer

source ·
pub trait EthPubSubApiServer: Sized + Send + Sync + 'static {
    // Required method
    fn subscribe<'life0, 'async_trait>(
        &'life0 self,
        subscription_sink: PendingSubscriptionSink,
        kind: SubscriptionKind,
        params: Option<Params>,
    ) -> Pin<Box<dyn Future<Output = Result<(), StringError>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self> { ... }
}
Expand description

Server trait implementation for the EthPubSubApi RPC API.

Required Methods§

source

fn subscribe<'life0, 'async_trait>( &'life0 self, subscription_sink: PendingSubscriptionSink, kind: SubscriptionKind, params: Option<Params>, ) -> Pin<Box<dyn Future<Output = Result<(), StringError>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Create an ethereum subscription for the given params

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Provider, Pool, Events, Network> EthPubSubApiServer for EthPubSub<Provider, Pool, Events, Network>
where Provider: BlockReader + EvmEnvProvider + Clone + 'static, Pool: TransactionPool + 'static, Events: CanonStateSubscriptions + Clone + 'static, Network: NetworkInfo + Clone + 'static,