Skip to content
Snippets Groups Projects
Commit 16e07237 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

added Javadoc

parent 9bf56613
Branches
Tags
No related merge requests found
......@@ -64,6 +64,12 @@ public abstract class Configuration extends AbstractCompositeStage {
return factory;
}
/**
* Register pipes if your configuration only relies on custom pipes and therefore {@link #connectPorts(OutputPort, InputPort)} is never called.
*
* @param pipe
* A custom pipe instance
*/
protected void registerCustomPipe(final AbstractPipe<?> pipe) {
startStage = pipe.getSourcePort().getOwningStage(); // memorize an arbitrary stage as starting point for traversing
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment