Trait runa_core::events::EventSource
source · pub trait EventSource<Event> {
type Source: Stream<Item = Event> + 'static;
// Required method
fn subscribe(&self) -> Self::Source;
}
Expand description
Event source
An event source is something you can get a stream of events from.