1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2019年5月31日 |
---|
#29 在 #jsonrpc
80 每月下载次数
在 7 crates 中使用
46KB
1K SLoC
jsonrpc-core
JSON-RPC 2.0 规范的传输无关Rust语言实现。
- - 服务器端
- - 客户端
示例
Cargo.toml
[dependencies]
jsonrpc-core = "4.0"
main.rs
extern crate jsonrpc_core;
use jsonrpc_core::*;
fn main() {
let mut io = IoHandler::default();
io.add_method("say_hello", |_params: Params| {
Ok(Value::String("hello".into()))
});
let request = r#"{"jsonrpc": "2.0", "method": "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()));
}
异步响应
main.rs
extern crate jsonrpc_core;
use jsonrpc_core::*;
use jsonrpc_core::futures::Future;
fn main() {
let io = IoHandler::new();
io.add_async_method("say_hello", |_params: Params| {
futures::finished(Value::String("hello".into()))
});
let request = r#"{"jsonrpc": "2.0", "method": "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()));
}
发布-订阅
请参阅示例目录。
依赖关系
~0.8–1.6MB
~36K SLoC