pub type EventStream<T> = Pin<Box<dyn Stream<Item = Result<T, AraComError>> + Send>>;
A stream of events from a subscribed event group
pub struct EventStream<T> { /* private fields */ }