Trait domafic::processors::Listeners [] [src]

pub trait Listeners<Message> {
    fn process_all<'a, P: ListenerProcessor<'a, Message>>(
        &'a self,
        acc: &mut P::Acc
    ) -> Result<(), P::Error>; }

Collection of Listeners with a common message type

Required Methods

Processes all of the listeners in the given collection using processor P and accumulator acc.

Implementors