Trait fibers_rpc::server::HandleCast [] [src]

pub trait HandleCast<T: Cast>: Send + Sync + 'static {
    fn handle_cast(&self, notification: T::Notification) -> NoReply;
}

This trait allows for handling notification RPC.

Required Methods

Handles a notification.

Implementors