pub struct DispatcherImpl<H, C, P>where
H: NewHandler,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,{ /* private fields */ }Expand description
Default implementation of the Dispatcher trait.
Implementations§
source§impl<H, C, P> DispatcherImpl<H, C, P>where
H: NewHandler,
H::Instance: 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
impl<H, C, P> DispatcherImpl<H, C, P>where
H: NewHandler,
H::Instance: 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
sourcepub fn new(new_handler: H, pipeline_chain: C, pipelines: PipelineSet<P>) -> Self
pub fn new(new_handler: H, pipeline_chain: C, pipelines: PipelineSet<P>) -> Self
Creates a new DispatcherImpl.
new_handler- TheHandlerthat will be called once thepipeline_chainis complete.pipeline_chain- A chain ofPipelineinstance handles that indicate whichPipelineswill be invoked.pipelines- AllPipelineinstances, accessible by the handles provided inpipeline_chain.