pub struct Connection<T: NetworkContent, E: HandlerError> { /* private fields */ }
Expand description
A connection serves as the main API to specify how a network conversation should look. It
allows sending messages to the recipiant and awaiting their response using the two methods
send_message
and send_message_await_reply
.
Implementations§
Source§impl<T: NetworkContent, E: HandlerError> Connection<T, E>
impl<T: NetworkContent, E: HandlerError> Connection<T, E>
Sourcepub async fn send_message(
&mut self,
msg: NetworkMessage<T>,
) -> Result<(), Error<E>>
pub async fn send_message( &mut self, msg: NetworkMessage<T>, ) -> Result<(), Error<E>>
Send a message over the connection without waiting for a reply, returning upon successfully sending the message out.
Sourcepub async fn send_message_await_reply(
&mut self,
msg: NetworkMessage<T>,
timeout: Option<Duration>,
) -> Result<NetworkMessage<T>, Error<E>>
pub async fn send_message_await_reply( &mut self, msg: NetworkMessage<T>, timeout: Option<Duration>, ) -> Result<NetworkMessage<T>, Error<E>>
Send a message over the connection while waiting for a reply, a Result
is returned with
the replying NetworkMessage
.
Auto Trait Implementations§
impl<T, E> Freeze for Connection<T, E>
impl<T, E> RefUnwindSafe for Connection<T, E>
impl<T, E> Send for Connection<T, E>
impl<T, E> Sync for Connection<T, E>
impl<T, E> Unpin for Connection<T, E>
impl<T, E> UnwindSafe for Connection<T, E>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more