5 releases (breaking)

0.5.0 Apr 22, 2020
0.4.0 Sep 15, 2019
0.3.0 Nov 4, 2017
0.2.0 Feb 9, 2017
0.1.0 May 27, 2016

#14 in #endpoints

Download history 1/week @ 2023-11-27 7/week @ 2024-01-15 22/week @ 2024-02-19 25/week @ 2024-02-26 19/week @ 2024-03-04 111/week @ 2024-03-11

177 downloads per month

MIT license

17KB
241 lines

EventSource

crates.io Documentation Build Status

EventSource is a Rust library for reading from Server-Sent Events endpoints. It transparently sends HTTP requests and only exposes a stream of events to the user. It handles automatic reconnection and parsing of the text/event-stream data format.

Examples

use eventsource::reqwest::Client;
use reqwest::Url;
                                                                                              
fn main() {
    let client = Client::new(Url::parse("http://example.com").unwrap());
    for event in client {
        println!("{}", event.unwrap());
    }
}

lib.rs:

EventSource

EventSource is a Rust library for reading from Server-Sent Events endpoints. It transparently sends HTTP requests and only exposes a stream of events to the user. It handles automatic reconnection and parsing of the text/event-stream data format.

Examples

use eventsource::reqwest::Client;
use reqwest::Url;

fn main() {
    let client = Client::new(Url::parse("http://example.com").unwrap());
    for event in client {
        println!("{}", event.unwrap());
    }
}

Dependencies

~2.5–7.5MB
~152K SLoC