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

#85 added JavaDoc

parent 7a74aa70
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,12 @@ public class AnalysisConfiguration { ...@@ -16,6 +16,12 @@ public class AnalysisConfiguration {
return this.threadableStageJobs; return this.threadableStageJobs;
} }
/**
* Execute this method, to add a stage to the configuration, which should be executed in a own thread.
*
* @param stage
* A arbitrary stage, which will be added to the configuration und executed in a thread.
*/
public void addThreadableStage(final Stage stage) { public void addThreadableStage(final Stage stage) {
this.threadableStageJobs.add(stage); this.threadableStageJobs.add(stage);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment