Trait Tx

Source
pub trait Tx<M: RemoteMessage>: Debug {
    // Required methods
    fn try_post(
        &self,
        message: M,
        return_channel: Sender<M>,
    ) -> Result<(), SendError<M>>;
    fn addr(&self) -> ChannelAddr;
    fn status(&self) -> &Receiver<TxStatus>;

    // Provided methods
    fn post(&self, message: M) { ... }
    fn send<'life0, 'async_trait>(
        &'life0 self,
        message: M,
    ) -> Pin<Box<dyn Future<Output = Result<(), SendError<M>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

The transmit end of an M-typed channel.

Required Methods§

Source

fn try_post( &self, message: M, return_channel: Sender<M>, ) -> Result<(), SendError<M>>

Enqueue a message on the local end of the channel. The message is either delivered, or we eventually discover that the channel has failed and it will be sent back on return_handle.

Source

fn addr(&self) -> ChannelAddr

The channel address to which this Tx is sending.

Source

fn status(&self) -> &Receiver<TxStatus>

A means to monitor the health of a Tx.

Provided Methods§

Source

fn post(&self, message: M)

Enqueue a message to be sent on the channel. The caller is expected to monitor the channel status for failures.

Source

fn send<'life0, 'async_trait>( &'life0 self, message: M, ) -> Pin<Box<dyn Future<Output = Result<(), SendError<M>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Send a message synchronously, returning when the messsage has been delivered to the remote end of the channel.

Implementors§