Package co.cask.cdap.internal.app.deploy.pipeline

Examples of co.cask.cdap.internal.app.deploy.pipeline.DeployDatasetModulesStage


  @Override
  public ListenableFuture<O> deploy(Id.Account id, @Nullable String appId, I input) throws Exception {
    Pipeline<O> pipeline = pipelineFactory.getPipeline();
    pipeline.addLast(new LocalArchiveLoaderStage(id, appId));
    pipeline.addLast(new VerificationStage(datasetFramework));
    pipeline.addLast(new DeployDatasetModulesStage(datasetFramework));
    pipeline.addLast(new CreateDatasetInstancesStage(datasetFramework));
    pipeline.addLast(new DeletedProgramHandlerStage(store, programTerminator, streamConsumerFactory,
                                                    queueAdmin, discoveryServiceClient));
    pipeline.addLast(new ProgramGenerationStage(configuration, locationFactory));
    pipeline.addLast(new ApplicationRegistrationStage(store));
View Full Code Here

TOP

Related Classes of co.cask.cdap.internal.app.deploy.pipeline.DeployDatasetModulesStage

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.