s-jsonrpc-core

Transport agnostic rust implementation of JSON-RPC 2.0 Specification.

Documentation

Example

Cargo.toml

[dependencies] s-jsonrpc-core = "4.0"

main.rs

```rust extern crate sjsonrpccore;

use sjsonrpccore::*;

fn main() { let mut io = IoHandler::default(); io.addmsod("sayhello", |_params: Params| { Ok(Value::String("hello".into())) });

let request = r#"{"jsonrpc": "2.0", "msod": "say_hello", "params": [42, 23], "id": 1}"#;
let response = r#"{"jsonrpc":"2.0","result":"hello","id":1}"#;

assert_eq!(io.handle_request_sync(request), Some(response.to_owned()));

} ```

Asynchronous responses

main.rs

```rust extern crate sjsonrpccore;

use sjsonrpccore::*; use sjsonrpccore::futures::Future;

fn main() { let io = IoHandler::new(); io.addasyncmsod("sayhello", |params: Params| { futures::finished(Value::String("hello".into())) });

let request = r#"{"jsonrpc": "2.0", "msod": "say_hello", "params": [42, 23], "id": 1}"#;
let response = r#"{"jsonrpc":"2.0","result":"hello","id":1}"#;

assert_eq!(io.handle_request(request).wait().unwrap(), Some(response.to_owned()));

} ```

Publish-Subscribe

See examples directory.