Uses of Class
org.anchoranalysis.experiment.bean.processor.JobProcessor
| Package | Description |
|---|---|
| org.anchoranalysis.experiment.bean.io |
Generic experiments that handle input and output in structured ways.
|
| org.anchoranalysis.experiment.bean.processor |
How a task is executed on multiple inputs.
|
-
Uses of JobProcessor in org.anchoranalysis.experiment.bean.io
Methods in org.anchoranalysis.experiment.bean.io that return JobProcessor Modifier and Type Method Description JobProcessor<T,S>InputOutputExperiment. getTaskProcessor()What task is associated with the experiment, and how it is processed.Methods in org.anchoranalysis.experiment.bean.io with parameters of type JobProcessor Modifier and Type Method Description voidInputOutputExperiment. setTaskProcessor(JobProcessor<T,S> taskProcessor)What task is associated with the experiment, and how it is processed. -
Uses of JobProcessor in org.anchoranalysis.experiment.bean.processor
Subclasses of JobProcessor in org.anchoranalysis.experiment.bean.processor Modifier and Type Class Description classDebugDependentProcessor<T extends InputFromManager,S>Executes different processors depending on whether we are in debug mode or not.classParallelProcessor<T extends InputFromManager,S>Executes jobs in parallel across cores on the system.classSequentialProcessor<T extends InputFromManager,S>Executes jobs sequentially, without any parallelism.