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
use busrt::ipc::{Client, Config};
use busrt::rpc::{Rpc, RpcClient};
use busrt::{empty_payload, QoS};
use serde::Deserialize;
use std::collections::BTreeMap;
#[derive(Deserialize)]
struct Amount {
value: u64,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let name = "test.client.123";
let target = "test.client.rpc";
let config = Config::new("/tmp/busrt.sock", name);
let client = Client::connect(&config).await?;
let rpc = RpcClient::new0(client);
rpc.call0(target, "test", empty_payload!(), QoS::Processed)
.await?;
let mut payload: BTreeMap<&str, u32> = <_>::default();
payload.insert("value", 10);
rpc.call(
target,
"add",
rmp_serde::to_vec_named(&payload)?.into(),
QoS::Processed,
)
.await?;
let result = rpc
.call(target, "get", empty_payload!(), QoS::Processed)
.await?;
let amount: Amount = rmp_serde::from_slice(result.payload())?;
println!("{}", amount.value);
Ok(())
}