Struct aws_smithy_http::event_stream::Receiver
source · pub struct Receiver<T, E> { /* private fields */ }
Expand description
Receives Smithy-modeled messages out of an Event Stream.
Implementations§
source§impl<T, E> Receiver<T, E>
impl<T, E> Receiver<T, E>
sourcepub fn new(
unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + 'static,
body: SdkBody
) -> Self
pub fn new(
unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + 'static,
body: SdkBody
) -> Self
Creates a new Receiver
with the given message unmarshaller and SDK body.
sourcepub async fn recv(&mut self) -> Result<Option<T>, SdkError<E, RawMessage>>
pub async fn recv(&mut self) -> Result<Option<T>, SdkError<E, RawMessage>>
Asynchronously tries to receive a message from the stream. If the stream has ended,
it returns an Ok(None)
. If there is a transport layer error, it will return
Err(SdkError::DispatchFailure)
. Service-modeled errors will be a part of the returned
messages.