コード例 #1
0
ファイル: StepConfig.cs プロジェクト: pusp/o2platform
 public StepConfig WithHadoopJarStep(HadoopJarStepConfig hadoopJarStep)
 {
     this.hadoopJarStepField = hadoopJarStep;
     return this;
 }
コード例 #2
0
 public StepConfig WithHadoopJarStep(HadoopJarStepConfig hadoopJarStep)
 {
     this.hadoopJarStep = hadoopJarStep;
     return(this);
 }
コード例 #3
0
ファイル: StepConfig.cs プロジェクト: philasmar/aws-sdk-net
 /// <summary>
 /// Instantiates StepConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the step.</param>
 /// <param name="hadoopJarStep">The JAR file used for the step.</param>
 public StepConfig(string name, HadoopJarStepConfig hadoopJarStep)
 {
     _name          = name;
     _hadoopJarStep = hadoopJarStep;
 }
コード例 #4
0
ファイル: StepConfig.cs プロジェクト: rajdotnet/aws-sdk-net
 /// <summary>
 /// Instantiates StepConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the job flow step.</param>
 /// <param name="hadoopJarStep">The JAR file used for the job flow step.</param>
 public StepConfig(string name, HadoopJarStepConfig hadoopJarStep)
 {
     _name = name;
     _hadoopJarStep = hadoopJarStep;
 }