pub trait MessageSendEventsProvider {
    fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
}
Expand description

A trait indicating an object may generate message send events

Required Methods

Gets the list of pending events which were generated by previous actions, clearing the list in the process.

Implementors