Crate reqwest_eventsource
source ·Expand description
Provides a simple wrapper for reqwest
to provide an Event Source implementation.
You can learn more about Server Sent Events (SSE) take a look at the MDN
docs
This crate uses eventsource_stream
to wrap the underlying Bytes stream, and retries failed
requests.
§Example
ⓘ
let mut es = EventSource::get("http://localhost:8000/events");
while let Some(event) = es.next().await {
match event {
Ok(Event::Open) => println!("Connection Open!"),
Ok(Event::Message(message)) => println!("Message: {:#?}", message),
Err(err) => {
println!("Error: {}", err);
es.close();
}
}
}
Modules§
- Helpers to handle connection delays when receiving errors
Structs§
- Error raised when a
RequestBuilder
cannot be cloned. SeeRequestBuilder::try_clone
for more information - Provides the
Stream
implementation for theEvent
items. This wraps theRequestBuilder
and retries requests when they fail.
Enums§
- Error raised by the EventSource stream fetching and parsing
- Events created by the
EventSource
- The ready state of an
EventSource
Traits§
- Provides an easy interface to build an
EventSource
from aRequestBuilder