meta_srv::service::mailboxTrait Mailbox
Source pub trait Mailbox: Send + Sync {
// Required methods
fn send<'life0, 'life1, 'async_trait>(
&'life0 self,
ch: &'life1 Channel,
msg: MailboxMessage,
timeout: Duration,
) -> Pin<Box<dyn Future<Output = Result<MailboxReceiver>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn broadcast<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
ch: &'life1 BroadcastChannel,
msg: &'life2 MailboxMessage,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn on_recv<'life0, 'async_trait>(
&'life0 self,
id: MessageId,
maybe_msg: Result<MailboxMessage>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}