Struct reth_ipc::server::IpcServer

source ·
pub struct IpcServer<HttpMiddleware = Identity, RpcMiddleware = Identity> { /* private fields */ }
Expand description

Ipc Server implementation

This is an adapted jsonrpsee Server, but for Ipc connections.

Implementations§

source§

impl<HttpMiddleware, RpcMiddleware> IpcServer<HttpMiddleware, RpcMiddleware>

source

pub fn endpoint(&self) -> String

Returns the configured endpoint

source§

impl<HttpMiddleware, RpcMiddleware> IpcServer<HttpMiddleware, RpcMiddleware>
where RpcMiddleware: for<'a> Layer<RpcService, Service: RpcServiceT<'a>> + Clone + Send + 'static, HttpMiddleware: Layer<TowerServiceNoHttp<RpcMiddleware>, Service: Service<String, Response = Option<String>, Error = Box<dyn Error + Send + Sync + 'static>, Future: Send + Unpin> + Send> + Send + 'static,

source

pub async fn start( self, methods: impl Into<Methods>, ) -> Result<ServerHandle, IpcServerStartError>

Start responding to connections requests.

This will run on the tokio runtime until the server is stopped or the ServerHandle is dropped.

use jsonrpsee::RpcModule;
use reth_ipc::server::Builder;
async fn run_server() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let server = Builder::default().build("/tmp/my-uds".into());
    let mut module = RpcModule::new(());
    module.register_method("say_hello", |_, _, _| "lo")?;
    let handle = server.start(module).await?;

    // In this example we don't care about doing shutdown so let's it run forever.
    // You may use the `ServerHandle` to shut it down or manage it yourself.
    let server = tokio::spawn(handle.stopped());
    server.await.unwrap();
    Ok(())
}

Trait Implementations§

source§

impl Debug for IpcServer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<HttpMiddleware, RpcMiddleware> Freeze for IpcServer<HttpMiddleware, RpcMiddleware>
where HttpMiddleware: Freeze, RpcMiddleware: Freeze,

§

impl<HttpMiddleware = Identity, RpcMiddleware = Identity> !RefUnwindSafe for IpcServer<HttpMiddleware, RpcMiddleware>

§

impl<HttpMiddleware, RpcMiddleware> Send for IpcServer<HttpMiddleware, RpcMiddleware>
where HttpMiddleware: Send, RpcMiddleware: Send,

§

impl<HttpMiddleware, RpcMiddleware> Sync for IpcServer<HttpMiddleware, RpcMiddleware>
where HttpMiddleware: Sync, RpcMiddleware: Sync,

§

impl<HttpMiddleware, RpcMiddleware> Unpin for IpcServer<HttpMiddleware, RpcMiddleware>
where HttpMiddleware: Unpin, RpcMiddleware: Unpin,

§

impl<HttpMiddleware = Identity, RpcMiddleware = Identity> !UnwindSafe for IpcServer<HttpMiddleware, RpcMiddleware>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> MaybeSend for T
where T: Send,

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.