Expand description
High level, typed wrapper for rs_jsonrpc_core
.
Enables creation of “Service” objects grouping a set of RPC methods togs in a typed manner.
Example
extern crate rs_jsonrpc_core;
#[macro_use] extern crate rs_jsonrpc_macros;
use rs_jsonrpc_core::{IoHandler, Error, Result};
use rs_jsonrpc_core::futures::future::{self, FutureResult};
build_rpc_trait! {
pub trait Rpc {
/// Returns a protocol version
#[rpc(name = "protocolVersion")]
fn protocol_version(&self) -> Result<String>;
/// Adds two numbers and returns a result
#[rpc(name = "add")]
fn add(&self, u64, u64) -> Result<u64>;
/// Performs asynchronous operation
#[rpc(name = "callAsync")]
fn call(&self, u64) -> FutureResult<String, Error>;
}
}
struct RpcImpl;
impl Rpc for RpcImpl {
fn protocol_version(&self) -> Result<String> {
Ok("version1".into())
}
fn add(&self, a: u64, b: u64) -> Result<u64> {
Ok(a + b)
}
fn call(&self, _: u64) -> FutureResult<String, Error> {
future::ok("OK".to_owned()).into()
}
}
fn main() {
let mut io = IoHandler::new();
let rpc = RpcImpl;
io.extend_with(rpc.to_delegate());
}
Re-exports§
pub extern crate rs_jsonrpc_core;
pub extern crate rs_jsonrpc_pubsub;
Modules§
- PUB-SUB auto-serializing structures.
Macros§
- Auto-generates an RPC trait from trait definition.
Structs§
- A set of RPC methods and notifications tied to single
delegate
struct. - A wrapper type without an implementation of
Deserialize
which allows a special implementation ofWrap
for functions that take a trailing default parameter.
Functions§
- Converts a serializable value into
Value
.