pub trait EventHub: Send + Sync {
    fn send(&self, event: EventData);
}

Required Methods

Implementors