pub trait SubscribeRpcMethod<M: PubSubMetadata>: Send + Sync + 'static {
    fn call(&self, params: Params, meta: M, subscriber: Subscriber);
}
Expand description

Subscribe handler

Required Methods§

Called when client is requesting new subscription to be started.

Implementors§