use of org.apache.helix.controller.stages.MessageGenerationPhase in project helix by apache.
the class TestP2PStateTransitionMessages method createPipeline.
private Pipeline createPipeline() {
Pipeline pipeline = new Pipeline("test");
pipeline.addStage(new ReadClusterDataStage());
pipeline.addStage(new BestPossibleStateCalcStage());
pipeline.addStage(new IntermediateStateCalcStage());
pipeline.addStage(new MessageGenerationPhase());
pipeline.addStage(new MessageSelectionStage());
pipeline.addStage(new MessageThrottleStage());
return pipeline;
}
Aggregations