Trait jsonrpc_pubsub::UnsubscribeRpcMethod [] [src]

pub trait UnsubscribeRpcMethod: Send + Sync + 'static {
    fn call(&self, id: SubscriptionId) -> BoxFuture<Value, Error>;
}

Unsubscribe handler

Required Methods

Called when client is requesting to cancel existing subscription.

Implementors