pub trait GleanEventListener: Send {
    fn on_event_recorded(&self, id: String);
}
Expand description

A callback handler that receives the base identifier of recorded events The identifier is in the format: .

Required Methods§

Called when an event is recorded, indicating the id of the event

Implementors§