コード例 #1
0
ファイル: Pipe.cs プロジェクト: jeske/StepsDB-alpha
 public PipeGenerateException(PipeStage stage, string msg)
 {
     this.stage = stage;
     this.msg = msg;
 }
コード例 #2
0
ファイル: Pipe.cs プロジェクト: jeske/StepsDB-alpha
 public PipeStagePartition(string context_key, PipeStage next_stage)
 {
     this.context_key = context_key;
     this.next_stage = next_stage;
 }