use of com.datatorrent.api.Operator in project apex-core by apache.
the class PropertyInjectorVisitor method handle.
@Override
public void handle(DAGSetupEvent event) {
for (DAG.OperatorMeta ometa : dag.getAllOperatorsMeta()) {
Operator o = ometa.getOperator();
LogicalPlanConfiguration.setOperatorProperties(o, propertyMap);
}
}
Aggregations