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
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,12 @@ public abstract class Configuration extends AbstractCompositeStage { ...@@ -64,6 +64,12 @@ public abstract class Configuration extends AbstractCompositeStage {
return factory; 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) { protected void registerCustomPipe(final AbstractPipe<?> pipe) {
startStage = pipe.getSourcePort().getOwningStage(); // memorize an arbitrary stage as starting point for traversing 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.
Finish editing this message first!
Please register or to comment