Beispiel #1
0
 public Pipeline(IPipelineHandlerSet handlers, ILogger performance, IPipelineContextFactory contextFactory)
 {
     ContextFactory   = contextFactory;
     this.handlers    = handlers;
     this.performance = performance;
 }
Beispiel #2
0
 public Pipeline(IPipelineHandlerSet handlers, ILogger performance)
     : this(handlers, performance, new PipelineContextFactory())
 {
 }