public SequentialExecutionPlanner(FlowGraph flowGraph)
 {
     this.flowGraph = flowGraph;
     ExecutionPlan  = new List <DesignerItemBase>();
 }
Esempio n. 2
0
 public SubFlowExecution(ItemWorker parentItemWorker, ItemLog parentItemLog, ObjectResolver objectResolver, FlowGraph flowGraph)
 {
     this.parentItemWorker = parentItemWorker;
     this.parentItemLog    = parentItemLog;
     this.objectResolver   = objectResolver;
     this.FlowGraph        = flowGraph;
     this.DataStreams      = new Dictionary <ConnectionBase, IDatastore>();
 }