Trait protoflow_core::MessageSender
source · pub trait MessageSender<T: Message> {
// Provided methods
fn send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<()>
where T: 'a { ... }
fn try_send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<bool>
where T: 'a { ... }
}
Provided Methods§
sourcefn send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<()>where
T: 'a,
fn send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<()>where
T: 'a,
Sends a message, blocking until it has been sent.
Returns Ok(())
if the message was sent.
Returns Err(PortError::Disconnected)
if the port is disconnected.
Returns Err(PortError::Closed)
if the port is closed.
Returns Err(PortError)
if another error occurs.
sourcefn try_send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<bool>where
T: 'a,
fn try_send<'a>(&self, _message: impl Into<&'a T>) -> PortResult<bool>where
T: 'a,
Tries to send a message, returning immediately.
Returns Ok(true)
if the message was sent.
Returns Ok(false)
if the message could not be immediately sent.
Returns Err(PortError::Disconnected)
if the port is disconnected.
Returns Err(PortError::Closed)
if the port is closed.
Returns Err(PortError)
if another error occurs.
Object Safety§
This trait is not object safe.