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

#290 in HTTP client

Download history 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 29/week @ 2024-03-18 36/week @ 2024-03-25 194/week @ 2024-04-01 12/week @ 2024-04-08 33/week @ 2024-04-15

277 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.6–7.5MB
~154K SLoC