Package adams.multiprocess
Interface JobRunnerUser
-
public interface JobRunnerUserInterface for classes that can use a JobRunner for execution.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobRunnergetJobRunner()Returns the job runner to use.booleangetUseJobRunner()Returns whether to use a JobRunner to limit resource use.StringjobRunnerTipText()Returns the tip text for this property.voidsetJobRunner(JobRunner value)Sets the job runner to use.voidsetUseJobRunner(boolean value)Sets whether to use a JobRunner to limit resource use.StringuseJobRunnerTipText()Returns the tip text for this property.
-
-
-
Method Detail
-
setUseJobRunner
void setUseJobRunner(boolean value)
Sets whether to use a JobRunner to limit resource use.- Parameters:
value- true if to use
-
getUseJobRunner
boolean getUseJobRunner()
Returns whether to use a JobRunner to limit resource use.- Returns:
- true if to use
-
useJobRunnerTipText
String useJobRunnerTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setJobRunner
void setJobRunner(JobRunner value)
Sets the job runner to use.- Parameters:
value- the job runner to use
-
getJobRunner
JobRunner getJobRunner()
Returns the job runner to use.- Returns:
- the job runner to use
-
jobRunnerTipText
String jobRunnerTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-