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
 Task TaskGraphBuilder.Handle.asTask()
          Returns the task that this handle represents.
 Task TaskGraphBuilder.Handle.notFatal()
          Marks this task as non-fatal.
 

Methods in org.jvnet.hudson.reactor that return types with arguments of type Task
 java.lang.Iterable<? extends Task> TaskGraphBuilder.discoverTasks(Reactor reactor)
           
abstract  java.lang.Iterable<? extends Task> TaskBuilder.discoverTasks(Reactor reactor)
          Returns all the tasks that this builder contributes to.
 

Methods in org.jvnet.hudson.reactor with parameters of type Task
 void Reactor.add(Task t)
          Adds a new Task to the reactor.
 void ReactorListener.onTaskCompleted(Task t)
          Notifies that the execution of the task is about to finish.
 void ReactorListener.Aggregator.onTaskCompleted(Task t)
           
 void ReactorListener.onTaskFailed(Task t, java.lang.Throwable err, boolean fatal)
          Notifies that the execution of the task have failed with an exception.
 void ReactorListener.Aggregator.onTaskFailed(Task t, java.lang.Throwable err, boolean fatal)
           
 void ReactorListener.onTaskStarted(Task t)
          Notifies that the execution of the task is about to start.
 void ReactorListener.Aggregator.onTaskStarted(Task t)
           
protected  void Reactor.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
 void Reactor.addAll(java.lang.Iterable<? extends Task> _tasks)
          Adds a set of taks to the reactor.
static TaskBuilder TaskBuilder.fromTasks(java.util.Collection<? extends Task> tasks)
          Creates a TaskBuilder that always discovers the given set of tasks.
 



Copyright © 2011. All Rights Reserved.