Struct netty_rs::Connection[][src]

pub struct Connection<T: NetworkContent, E: HandlerError> { /* fields omitted */ }

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

impl<T: NetworkContent, E: HandlerError> Connection<T, E>[src]

pub async fn send_message(
    &mut self,
    msg: NetworkMessage<T>
) -> Result<(), Error<E>>
[src]

Send a message over the connection without waiting for a reply, returning upon successfully sending the message out.

pub async fn send_message_await_reply(
    &mut self,
    msg: NetworkMessage<T>,
    timeout: Option<Duration>
) -> Result<NetworkMessage<T>, Error<E>>
[src]

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> !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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,