pub trait EventManager<E, I, S, Z>: EventFirer<I> + EventProcessor<E, I, S, Z> + EventRestarter<S> + HasEventManagerId + ProgressReporter<I> where
    I: Input
{ }
Expand description

EventManager is the main communications hub. For the “normal” multi-processed mode, you may want to look into LlmpRestartingEventManager

Implementors