synchronized (this.state) {
Preconditions.checkState(this.state == State.INITED,
"Can only run while in INITED state. Current: " + this.state);
this.state = State.RUNNING;
}
LogicalIOProcessor lioProcessor = (LogicalIOProcessor) processor;
lioProcessor.run(runInputMap, runOutputMap);
}