pub trait ExampleEventMonitorProxyInterface: Send + Sync {
    type OnEventResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn on_event(&self, event: &str) -> Self::OnEventResponseFut;
}

Required Associated Types§

Required Methods§

source

fn on_event(&self, event: &str) -> Self::OnEventResponseFut

Implementors§