Home
last modified time | relevance | path

Searched refs:UnbufferedService (Results 1 – 2 of 2) sorted by relevance

/trusty/user/base/lib/tipc/rust/src/
Dservice.rs408 pub trait UnbufferedService { interface
450 impl<T, U: Deserialize, V: Service<Connection = T, Message = U>> UnbufferedService for V {
458 ) -> Result<ConnectResult<<Self as UnbufferedService>::Connection>> { in on_connect()
464 connection: &<Self as UnbufferedService>::Connection, in on_message()
481 fn on_disconnect(&self, connection: &<Self as UnbufferedService>::Connection) { in on_disconnect()
522 ($vis:vis $wrapper:ident ($inner:ty: UnbufferedService)) => {
568 impl $crate::UnbufferedService for $wrapper {
569 type Connection = <$inner as $crate::UnbufferedService>::Connection;
577 <$inner as $crate::UnbufferedService>::on_connect(&self.0, port, handle, peer)
586 … <$inner as $crate::UnbufferedService>::on_message(&self.0, connection, handle, buffer)
[all …]
Dlib.rs44 pub use service::{Dispatcher, Manager, PortCfg, Service, UnbufferedService, Uuid};