Scripting Interfaces: Flow Related Objects

Flow:

Synopsis
Used to group various components of the flow as a common flow. This flow is then submitted to the Flow Engine (Task Scheduler) to execute the flow.
We specify the start activities (components that pump data into the overall data flow) and the non-start activities (downstream components that simply read data, manipulate/process it and send it to the next component in the flow chain).
E.g.
f = new Flow();
f.addComponents(dataFilterService);
f.addStartActivities(dataSource);
f.start("1");

f.waitUntilFlowCompletes();

API

Status: Implemented

(back to Notes)