Struct jsonrpsee_http_server::RpcModule[][src]

pub struct RpcModule<Context> { /* fields omitted */ }
Expand description

Sets of JSON-RPC methods can be organized into a “module“s that are in turn registered on the server or, alternatively, merged with other modules to construct a cohesive API. RpcModule wraps an additional context argument that can be used to access data during call execution.

Implementations

Create a new module with a given shared Context.

Register a new synchronous RPC method, which computes the response with the given callback.

Register a new asynchronous RPC method, which computes the response with the given callback.

Register a new RPC subscription that invokes callback on every subscription request. The callback itself takes three parameters: - RpcParams: JSONRPC parameters in the subscription request. - SubscriptionSink: A sink to send messages to the subscriber. - Context: Any type that can be embedded into the RpcContextModule.

Examples


use jsonrpsee_utils::server::rpc_module::RpcModule;

let mut ctx = RpcModule::new(99_usize);
ctx.register_subscription("sub", "unsub", |params, mut sink, ctx| {
    let x: usize = params.one()?;
    std::thread::spawn(move || {
        let sum = x + (*ctx);
        sink.send(&sum)
    });
    Ok(())
});

Convert a module into methods. Consumes self.

Merge two RpcModule’s by adding all Methods other into self. Fails if any of the methods in other is present already.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

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

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.