JsonRpcDispatcher

Struct JsonRpcDispatcher 

Source
pub struct JsonRpcDispatcher<E>
where E: ToJsonRpcError,
{ pub handlers: HashMap<String, Arc<dyn JsonRpcHandler<Error = E>>>, pub default_handler: Option<Arc<dyn JsonRpcHandler<Error = E>>>, }
Expand description

JSON-RPC method dispatcher with specific error type

Fields§

§handlers: HashMap<String, Arc<dyn JsonRpcHandler<Error = E>>>§default_handler: Option<Arc<dyn JsonRpcHandler<Error = E>>>

Implementations§

Source§

impl<E> JsonRpcDispatcher<E>
where E: ToJsonRpcError,

Source

pub fn new() -> Self

Source

pub fn register_method<H>(&mut self, method: String, handler: H)
where H: JsonRpcHandler<Error = E> + 'static,

Register a handler for a specific method

Source

pub fn register_methods<H>(&mut self, methods: Vec<String>, handler: H)
where H: JsonRpcHandler<Error = E> + 'static,

Register a handler for multiple methods

Source

pub fn set_default_handler<H>(&mut self, handler: H)
where H: JsonRpcHandler<Error = E> + 'static,

Set a default handler for unregistered methods

Source

pub async fn handle_request_with_context( &self, request: JsonRpcRequest, session_context: SessionContext, ) -> JsonRpcMessage

Process a JSON-RPC request with session context and return a response

Source

pub async fn handle_request(&self, request: JsonRpcRequest) -> JsonRpcMessage

Process a JSON-RPC request and return a response (backward compatibility - no session context)

Source

pub async fn handle_notification( &self, notification: JsonRpcNotification, ) -> Result<(), E>

Process a JSON-RPC notification

Source

pub async fn handle_notification_with_context( &self, notification: JsonRpcNotification, session_context: Option<SessionContext>, ) -> Result<(), E>

Process a JSON-RPC notification with session context

Source

pub fn registered_methods(&self) -> Vec<String>

Get all registered methods

Trait Implementations§

Source§

impl<E> Default for JsonRpcDispatcher<E>
where E: ToJsonRpcError,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.