5859606162636465666768
protected final PipelineImpl createPipeline(Valve... valves) { PipelineImpl pipeline = new PipelineImpl(); pipeline.setValves(valves); try { pipeline.afterPropertiesSet(); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw new AssertionError(e); }
119120121122123124125126127128129
DoPerformRunnableValve valve = new DoPerformRunnableValve(); valve.afterPropertiesSet(); PipelineImpl pipeline = new PipelineImpl(); pipeline.setValves(new Valve[] { valve }); pipeline.afterPropertiesSet(); asyncPipeline = pipeline; } }