[][src]Struct eventstreams::EventStream

pub struct EventStream {
    pub source: EventSource,
}

Fields

source: EventSource

Allows manipulation/control of upstream sse_client:EventSource.

Implementations

impl EventStream[src]

pub fn new() -> EventStream[src]

Create new EventStream instance

pub fn on_wiki_edit<F>(&self, wiki: &'static str, listener: F) where
    F: Fn(EditEvent) + Send + 'static, 
[src]

Set a listener for edits on a specific wiki using the server name

Example

stream.on_wiki_edit("www.wikidata.org", |edit| {
    dbg!(edit);
});

pub fn on_edit<F>(&self, listener: F) where
    F: Fn(EditEvent) + Send + 'static, 
[src]

Set a listener for all edits

Example

stream.on_edit(|edit| {
    dbg!(edit);
});

pub fn on_wiki_log<F>(&self, wiki: &'static str, listener: F) where
    F: Fn(LogEvent) + Send + 'static, 
[src]

pub fn on_log<F>(&self, listener: F) where
    F: Fn(LogEvent) + Send + 'static, 
[src]

pub fn close(&self)[src]

Close the connection. Wrapper around sse_client::EventSource#close.

Trait Implementations

impl Default for EventStream[src]

Auto Trait Implementations

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.