3个版本 (破坏性更新)
使用旧的Rust 2015
0.2.0 | 2015年6月15日 |
---|---|
0.1.0 | 2015年6月14日 |
0.0.1 | 2015年6月8日 |
在#json-rpc-server中排名46
27KB
474 代码行
json rpc
包 | Travis |
---|---|
概述
目前处于开发中。有关更多信息,请参阅./examples中的示例。
许可证
双许可,以兼容Rust项目。
根据您的选择,许可协议为Apache License,版本2.0 https://apache.ac.cn/licenses/LICENSE-2.0 或MIT许可证 http://opensource.org/licenses/MIT。此文件不得复制、修改或分发,除非根据这些条款。
示例
这是一个包含两个方法的基本示例
#[macro_use(rpc_method)]
extern crate json_rpc;
use json_rpc::{Server, Json, Error};
fn main() {
let mut rpc_server = Server::new();
// Registers a Rpc Method named "Subtract" with two parameter "by Name".
rpc_method!(rpc_server, Subtract, oper1<u64>;oper2<u64>, {
Ok(Json::U64(oper1 - oper2))
});
// Registers a Rpc Method named "Multiply" with N parameteres "by Position".
rpc_method!(rpc_server, Multiply, values[u64], {
let mut r = 1;
for v in values { r *= v }
Ok(Json::U64(r))
});
let str_request = "{\"jsonrpc\":\"2.0\",\"method\":\"Subtract\", \"params\":{\"oper1\":23, \"oper2\":4}, \"id\":2}".to_string();
match rpc_server.request(str_request) {
Some(str_response) => assert_eq!(str_response, "{\"id\":2,\"jsonrpc\":\"2.0\",\"result\":19}") ,
None => unreachable!(),
};
let str_request = "{\"jsonrpc\":\"2.0\",\"method\":\"Multiply\", \"params\":[5, 6, 7], \"id\":3}".to_string();
match rpc_server.request(str_request) {
Some(str_response) => assert_eq!(str_response, "{\"id\":3,\"jsonrpc\":\"2.0\",\"result\":210}") ,
None => unreachable!(),
};
}
依赖项
~345KB