tetsy-jsonrpc-core

Crates.iotetsy-jsonrpc-core
lib.rstetsy-jsonrpc-core
version15.1.0
sourcesrc
created_at2021-03-01 07:37:01.961717
updated_at2021-03-13 03:23:09.828614
descriptionTetsy Transport agnostic rust implementation of JSON-RPC 2.0 Specification.
homepagehttps://core.tetcoin.org
repositoryhttps://github.com/tetcoin/tetsy-jsonrpc
max_upload_size
id362102
size67,254
Marlon Hanks (marlonhanks)

documentation

https://docs.rs/tetsy-jsonrpc-core/

README

tetsy-jsonrpc-core

Transport agnostic rust implementation of JSON-RPC 2.0 Specification.

Documentation

  • - server side
  • - client side

Example

Cargo.toml

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

main.rs

use tetsy_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()));
}

Asynchronous responses

main.rs

use tetsy_jsonrpc_core::*;
use tetsy_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()));
}

Publish-Subscribe

See examples directory.

Commit count: 754

cargo fmt