Skip to content
Snippets Groups Projects
Commit cdf208bb authored by Christian Wulf's avatar Christian Wulf
Browse files

adapted Pipeline to new interface

parent 0be79ea2
No related branches found
No related tags found
No related merge requests found
......@@ -68,4 +68,19 @@ public final class Pipeline<L extends Stage> extends Stage {
return firstStage.isStarted();
}
@Override
public void onValidating(final List<InvalidPortConnection> invalidPortConnections) {
firstStage.onValidating(invalidPortConnections);
}
@Override
public void onStarting() throws Exception {
firstStage.onStarting();
}
@Override
public void onTerminating() throws Exception {
firstStage.onTerminating();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment