Package adams.multiprocess
Interface JobRunnerSupporter
-
- All Known Implementing Classes:
SpreadSheetFilter
,WekaFilter
,WekaTestSetEvaluator
,WekaTrainAssociator
,WekaTrainClassifier
,WekaTrainClusterer
,WekaTrainTestSetEvaluator
public interface JobRunnerSupporter
Interface for classes that can offload their processing into a jobs executed by a JobRunner instance.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getPreferJobRunner()
Returns whether to offload processing to a JobRunner instance if available.String
preferJobRunnerTipText()
Returns the tip text for this property.void
setPreferJobRunner(boolean value)
Sets whether to offload processing to a JobRunner instance if available.
-
-
-
Method Detail
-
setPreferJobRunner
void setPreferJobRunner(boolean value)
Sets whether to offload processing to a JobRunner instance if available.- Parameters:
value
- if true try to find/use a JobRunner instance
-
getPreferJobRunner
boolean getPreferJobRunner()
Returns whether to offload processing to a JobRunner instance if available.- Returns:
- if true try to find/use a JobRunner instance
-
preferJobRunnerTipText
String preferJobRunnerTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-