rpc_notification

Macro rpc_notification 

Source
macro_rules! rpc_notification {
    ($method:expr, $params:expr) => { ... };
    ($method:expr) => { ... };
}
Expand description

Create a JSON-RPC notification

§Usage:

// Notification with method and params
rpc_notification!("log", {"level": "info", "message": "Hello"})

// Notification with method only
rpc_notification!("ping")