Package org.apache.helix.controller.pipeline

Examples of org.apache.helix.controller.pipeline.StageContext


    return true;
  }

  static void runStage(ClusterEvent event, Stage stage) throws Exception
  {
    StageContext context = new StageContext();
    stage.init(context);
    stage.preProcess();
    stage.process(event);
    stage.postProcess();
  }
View Full Code Here

TOP

Related Classes of org.apache.helix.controller.pipeline.StageContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.