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

added javadoc

parent 5e8352ea
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,12 @@ public abstract class AnalysisConfiguration {
this.threadableStageJobs.add(stage);
}
/**
* Execute this method, to add a CompositeStage to the configuration, which should be executed in a own thread.
*
* @param stage
* A arbitrary CompositeStage, which will be added to the configuration and executed in a thread.
*/
protected void addThreadableStage(final AbstractCompositeStage stage) {
this.threadableStageJobs.add(stage.getFirstStage());
this.connections.addAll(stage.getConnections());
......
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