Uses of Interface
org.jvnet.hudson.reactor.Task
-
-
Uses of Task in org.jvnet.hudson.reactor
Methods in org.jvnet.hudson.reactor that return Task Modifier and Type Method Description TaskTaskGraphBuilder.Handle. asTask()Returns the task that this handle represents.TaskTaskGraphBuilder.Handle. notFatal()Marks this task as non-fatal.Methods in org.jvnet.hudson.reactor that return types with arguments of type Task Modifier and Type Method Description abstract Iterable<? extends Task>TaskBuilder. discoverTasks(Reactor reactor)Returns all the tasks that this builder contributes to.Iterable<? extends Task>TaskGraphBuilder. discoverTasks(Reactor reactor)Methods in org.jvnet.hudson.reactor with parameters of type Task Modifier and Type Method Description voidReactor. add(Task t)Adds a newTaskto the reactor.voidReactorListener.Aggregator. onTaskCompleted(Task t)default voidReactorListener. onTaskCompleted(Task t)Notifies that the execution of the task is about to finish.voidReactorListener.Aggregator. onTaskFailed(Task t, Throwable err, boolean fatal)default voidReactorListener. onTaskFailed(Task t, Throwable err, boolean fatal)Notifies that the execution of the task have failed with an exception.voidReactorListener.Aggregator. onTaskStarted(Task t)default voidReactorListener. onTaskStarted(Task t)Notifies that the execution of the task is about to start.protected voidReactor. runTask(Task t)Can be overridden by the subtype to enclose the entire execution of the task.Method parameters in org.jvnet.hudson.reactor with type arguments of type Task Modifier and Type Method Description voidReactor. addAll(Iterable<? extends Task> _tasks)Adds a set of tasks to the reactor.static TaskBuilderTaskBuilder. fromTasks(Collection<? extends Task> tasks)Creates aTaskBuilderthat always discovers the given set of tasks.
-