Struct jsonrpc_core::delegates::IoDelegate [−][src]
pub struct IoDelegate<T, M = ()> where
T: Send + Sync + 'static,
M: Metadata, { /* fields omitted */ }
A set of RPC methods and notifications tied to single delegate
struct.
Implementations
impl<T, M> IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]
impl<T, M> IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]pub fn new(delegate: Arc<T>) -> Self
[src]
Creates new IoDelegate
pub fn add_alias(&mut self, from: &str, to: &str)
[src]
Adds an alias to existing method. NOTE: Aliases are not transitive, i.e. you cannot create alias to an alias.
pub fn add_method<F, I>(&mut self, name: &str, method: F) where
F: Fn(&T, Params) -> I,
I: IntoFuture<Item = Value, Error = Error>,
F: Send + Sync + 'static,
I::Future: Send + 'static,
[src]
F: Fn(&T, Params) -> I,
I: IntoFuture<Item = Value, Error = Error>,
F: Send + Sync + 'static,
I::Future: Send + 'static,
Adds async method to the delegate.
pub fn add_method_with_meta<F, I>(&mut self, name: &str, method: F) where
F: Fn(&T, Params, M) -> I,
I: IntoFuture<Item = Value, Error = Error>,
F: Send + Sync + 'static,
I::Future: Send + 'static,
[src]
F: Fn(&T, Params, M) -> I,
I: IntoFuture<Item = Value, Error = Error>,
F: Send + Sync + 'static,
I::Future: Send + 'static,
Adds async method with metadata to the delegate.
pub fn add_notification<F>(&mut self, name: &str, notification: F) where
F: Fn(&T, Params),
F: Send + Sync + 'static,
[src]
F: Fn(&T, Params),
F: Send + Sync + 'static,
Adds notification to the delegate.
pub fn add_notification_with_meta<F>(&mut self, name: &str, notification: F) where
F: Fn(&T, Params, M),
F: Send + Sync + 'static,
[src]
F: Fn(&T, Params, M),
F: Send + Sync + 'static,
Adds notification with metadata to the delegate.
Trait Implementations
impl<T, M> IntoIterator for IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]
impl<T, M> IntoIterator for IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]impl<T, M> IoHandlerExtension<M> for IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]
impl<T, M> IoHandlerExtension<M> for IoDelegate<T, M> where
T: Send + Sync + 'static,
M: Metadata,
[src]