use of edu.iu.dsc.tws.executor.core.ExecutionRuntime in project twister2 by DSC-SPIDAL.
the class StreamingAllSharingExecutor method execute.
public boolean execute() {
executionHook.beforeExecution();
// lets create the runtime object
ExecutionRuntime runtime = new ExecutionRuntime(ExecutorContext.jobName(config), plan, channel);
// updated config
this.config = Config.newBuilder().putAll(config).put(ExecutorContext.TWISTER2_RUNTIME_OBJECT, runtime).build();
// go through the instances
return runExecution();
}
Aggregations