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§
Sourcefn try_post(
&self,
message: M,
return_channel: Sender<M>,
) -> Result<(), SendError<M>>
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
.
Sourcefn addr(&self) -> ChannelAddr
fn addr(&self) -> ChannelAddr
The channel address to which this Tx is sending.
Provided Methods§
Sourcefn post(&self, message: M)
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.
Sourcefn 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,
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.