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
- TheHandler
that will be called once thepipeline_chain
is complete.pipeline_chain
- A chain ofPipeline
instance handles that indicate whichPipelines
will be invoked.pipelines
- AllPipeline
instances, accessible by the handles provided inpipeline_chain
.