Uses of Class
org.anchoranalysis.experiment.bean.task.Task
| 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.
|
| org.anchoranalysis.experiment.bean.task |
Defines a task,
which is a set of operations run on an input, that may or may not generate an output.
|
| org.anchoranalysis.experiment.io |
Interfaces for replacing attributes of an experiment: input, output, task etc.
|
| org.anchoranalysis.experiment.task.processor |
Non-bean classes related to
JobProcessor. |
-
Uses of Task in org.anchoranalysis.experiment.bean.io
Methods in org.anchoranalysis.experiment.bean.io with parameters of type Task Modifier and Type Method Description voidInputOutputExperiment. replaceTask(Task<T,S> taskToReplace) -
Uses of Task in org.anchoranalysis.experiment.bean.processor
Methods in org.anchoranalysis.experiment.bean.processor that return Task Modifier and Type Method Description Task<T,S>JobProcessor. getTask()The task to be applied to inputs.Methods in org.anchoranalysis.experiment.bean.processor with parameters of type Task Modifier and Type Method Description voidJobProcessor. replaceTask(Task<T,S> taskToReplace)voidJobProcessor. setTask(Task<T,S> task)The task to be applied to inputs. -
Uses of Task in org.anchoranalysis.experiment.bean.task
Subclasses of Task in org.anchoranalysis.experiment.bean.task Modifier and Type Class Description classTaskWithoutSharedState<T extends InputFromManager>A particular type of task that doesn't share-state between running jobs -
Uses of Task in org.anchoranalysis.experiment.io
Methods in org.anchoranalysis.experiment.io with parameters of type Task Modifier and Type Method Description voidReplaceTask. replaceTask(Task<T,S> taskToReplace)Replace the currently-assignedTaskwith another. -
Uses of Task in org.anchoranalysis.experiment.task.processor
Constructors in org.anchoranalysis.experiment.task.processor with parameters of type Task Constructor Description CallableJob(Task<T,S> task, ParametersUnbound<T,S> parametersUnbound, JobStateMonitor stateMonitor, JobDescription jobDescription, ConcurrentJobMonitor monitor, Optional<MessageLogger> loggerMonitor, int showOngoingJobsLessThan)Constructor.