pub trait EnginePlugin<S: FlowState>: Send + Sync {
// Required methods
fn descriptor(&self) -> PluginDescriptor;
fn install(&self, engine: &mut FlowEngine<S>);
}Expand description
Engine plugin — installs hooks on FlowEngine.
pub trait EnginePlugin<S: FlowState>: Send + Sync {
// Required methods
fn descriptor(&self) -> PluginDescriptor;
fn install(&self, engine: &mut FlowEngine<S>);
}Engine plugin — installs hooks on FlowEngine.