Uses of Class
org.anchoranalysis.experiment.bean.task.Task
Packages that use Task
Package
Description
Generic experiments that handle input and output in structured ways.
How a task is executed on multiple inputs.
Defines a task,
which is a set of operations run on an input, that may or may not generate an output.
Interfaces for replacing attributes of an experiment: input, output, task etc.
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 TaskModifier and TypeMethodDescriptionvoidInputOutputExperiment.replaceTask(Task<T, S> taskToReplace) -
Uses of Task in org.anchoranalysis.experiment.bean.processor
Methods in org.anchoranalysis.experiment.bean.processor that return TaskMethods in org.anchoranalysis.experiment.bean.processor with parameters of type Task -
Uses of Task in org.anchoranalysis.experiment.bean.task
Subclasses of Task in org.anchoranalysis.experiment.bean.taskModifier and TypeClassDescriptionclassTaskWithoutSharedState<T extends InputFromManager>A particular type of task that doesn't share-state between running jobsSubclasses with type arguments of type Task in org.anchoranalysis.experiment.bean.taskModifier and TypeClassDescriptionclassTask<T extends InputFromManager, S>Encapsulates some kind of processing to be performed on a set of inputs. -
Uses of Task in org.anchoranalysis.experiment.io
Methods in org.anchoranalysis.experiment.io with parameters of type TaskModifier and TypeMethodDescriptionvoidReplaceTask.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 TaskModifierConstructorDescriptionCallableJob(Task<T, S> task, ParametersUnbound<T, S> parametersUnbound, BeanInstanceMap defaultInstances, JobStateMonitor stateMonitor, JobDescription jobDescription, JobStartStopLogger logger) Creates a newCallableJobinstance.