Trait fc_rpc::NetApiServer
pub trait NetApiServer: Sized + Send + Sync + 'static {
// Required methods
fn version(&self) -> Result<String, Error>;
fn peer_count(&self) -> Result<PeerCount, Error>;
fn is_listening(&self) -> Result<bool, Error>;
// Provided method
fn into_rpc(self) -> RpcModule<Self> { ... }
}
Expand description
Server trait implementation for the NetApi
RPC API.
Required Methods§
fn peer_count(&self) -> Result<PeerCount, Error>
fn peer_count(&self) -> Result<PeerCount, Error>
Returns number of peers connected to node.
fn is_listening(&self) -> Result<bool, Error>
fn is_listening(&self) -> Result<bool, Error>
Returns true if client is actively listening for network connections. Otherwise false.
Provided Methods§
fn into_rpc(self) -> RpcModule<Self>
fn into_rpc(self) -> RpcModule<Self>
Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule
.