Struct jsonrpc_core::MetaIoHandler
[−]
[src]
pub struct MetaIoHandler<T: Metadata, S: Middleware<T> = Noop> { /* fields omitted */ }
Request handler
By default compatible only with jsonrpc v2
Methods
impl<T: Metadata> MetaIoHandler<T>[src]
fn with_compatibility(compatibility: Compatibility) -> Self[src]
Creates new MetaIoHandler compatible with specified protocol version.
impl<T: Metadata, S: Middleware<T>> MetaIoHandler<T, S>[src]
fn new(compatibility: Compatibility, middleware: S) -> Self[src]
Creates new MetaIoHandler
fn with_middleware(middleware: S) -> Self[src]
Creates new MetaIoHandler with specified middleware.
fn add_alias(&mut self, alias: &str, other: &str)[src]
Adds an alias to a method.
fn add_method<F>(&mut self, name: &str, method: F) where
F: RpcMethodSync, [src]
F: RpcMethodSync,
Adds new supported synchronous method
fn add_async_method<F>(&mut self, name: &str, method: F) where
F: RpcMethodSimple, [src]
F: RpcMethodSimple,
Adds new supported asynchronous method
fn add_notification<F>(&mut self, name: &str, notification: F) where
F: RpcNotificationSimple, [src]
F: RpcNotificationSimple,
Adds new supported notification
fn add_method_with_meta<F>(&mut self, name: &str, method: F) where
F: RpcMethod<T>, [src]
F: RpcMethod<T>,
Adds new supported asynchronous method with metadata support.
fn add_notification_with_meta<F>(&mut self, name: &str, notification: F) where
F: RpcNotification<T>, [src]
F: RpcNotification<T>,
Adds new supported notification with metadata support.
fn extend_with<F>(&mut self, methods: F) where
F: Into<HashMap<String, RemoteProcedure<T>>>, [src]
F: Into<HashMap<String, RemoteProcedure<T>>>,
Extend this MetaIoHandler with methods defined elsewhere.
fn handle_request_sync(&self, request: &str, meta: T) -> Option<String>[src]
Handle given request synchronously - will block until response is available.
If you have any asynchronous methods in your RPC it is much wiser to use
handle_request instead and deal with asynchronous requests in a non-blocking fashion.
fn handle_request(
&self,
request: &str,
meta: T
) -> BoxFuture<Option<String>, ()>[src]
&self,
request: &str,
meta: T
) -> BoxFuture<Option<String>, ()>
Handle given request asynchronously.
fn handle_rpc_request(&self, request: Request, meta: T) -> S::Future[src]
Handle deserialized RPC request.
fn handle_call(
&self,
call: Call,
meta: T
) -> Either<BoxFuture<Option<Output>, ()>, FutureResult<Option<Output>, ()>>[src]
&self,
call: Call,
meta: T
) -> Either<BoxFuture<Option<Output>, ()>, FutureResult<Option<Output>, ()>>
Handle single call asynchronously.