Ejemplo n.º 1
0
 internal StageInput(Stage stage)
     : this(stage, null)
 {
 }
Ejemplo n.º 2
0
 internal StageOutput(Stage stage, Dataflow.ITimeContext <T> context)
     : this(stage, context, null)
 {
 }
Ejemplo n.º 3
0
 internal StageInput(Stage stage, Expression <Func <R, int> > partitionedBy)
 {
     this.PartitionedBy = partitionedBy;
     this.ForStage      = stage;
     this.endpointMap   = new Dictionary <int, VertexInput <R, T> >();
 }