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

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


    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));
    return pipeline.execute(input);
  }
View Full Code Here

TOP

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

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.