forked from paritytech/jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub_simple.rs
63 lines (55 loc) · 1.65 KB
/
pubsub_simple.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use std::{time, thread};
use std::sync::Arc;
use jsonrpc_core::*;
use jsonrpc_pubsub::{PubSubHandler, Session, Subscriber, SubscriptionId};
use jsonrpc_tcp_server::{ServerBuilder, RequestContext};
use jsonrpc_core::futures::Future;
/// To test the server:
///
/// ```bash
/// $ netcat localhost 3030 -
/// {"id":1,"jsonrpc":"2.0","method":"hello_subscribe","params":[10]}
///
/// ```
fn main() {
let mut io = PubSubHandler::new(MetaIoHandler::default());
io.add_method("say_hello", |_params: Params| {
Ok(Value::String("hello".to_string()))
});
io.add_subscription(
"hello",
("subscribe_hello", |params: Params, _, subscriber: Subscriber| {
if params != Params::None {
subscriber.reject(Error {
code: ErrorCode::ParseError,
message: "Invalid parameters. Subscription rejected.".into(),
data: None,
}).unwrap();
return;
}
let sink = subscriber.assign_id(SubscriptionId::Number(5)).unwrap();
// or subscriber.reject(Error {} );
// or drop(subscriber)
thread::spawn(move || {
loop {
thread::sleep(time::Duration::from_millis(100));
match sink.notify(Params::Array(vec![Value::Number(10.into())])).wait() {
Ok(_) => {},
Err(_) => {
println!("Subscription has ended, finishing.");
break;
}
}
}
});
}),
("remove_hello", |_id: SubscriptionId, _| {
println!("Closing subscription");
futures::future::ok(Value::Bool(true))
}),
);
let server = ServerBuilder::with_meta_extractor(io, |context: &RequestContext| Arc::new(Session::new(context.sender.clone())))
.start(&"127.0.0.1:3030".parse().unwrap())
.expect("Unable to start RPC server");
server.wait();
}