public RunJobFlowRequestBuilder(IBuilderSettings settings)
        {
            this.visitor = new BuildRequestVisitor(settings);

            this.visitor.OnRunJobFlowRequestCreated      += this.OnRunJobFlowRequestCreated;
            this.visitor.OnJobFlowInstancesConfigCreated += this.OnJobFlowInstancesConfigCreated;
            this.visitor.OnTagCreated += this.OnTagCreated;
            this.visitor.OnBootstrapActionConfigCreated += this.OnBootstrapActionConfigCreated;
            this.visitor.OnStepConfigCreated            += this.OnStepConfigCreated;
        }
Ejemplo n.º 2
0
        public AddJobFlowStepsRequestBuilder(IBuilderSettings settings)
        {
            this.visitor = new BuildRequestVisitor(settings);

            this.visitor.OnStepConfigCreated += this.OnStepConfigCreated;
        }