Package | Description |
---|---|
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.model.queue | |
jenkins.model | |
jenkins.triggers |
Modifier and Type | Method and Description |
---|---|
QueueTaskFuture<Queue.Executable> |
Queue.Item.getFuture()
Can be used to wait for the completion (either normal, abnormal, or cancellation) of the
Queue.Task . |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod)
Schedules a build, and returns a
Future object
to wait for the completion of the build. |
QueueTaskFuture<?> |
Project.scheduleBuild2(int quietPeriod,
Action... actions) |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c,
Action... actions)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c,
Collection<? extends Action> actions)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
Modifier and Type | Class and Description |
---|---|
class |
FutureImpl
Created when
Queue.Item is created so that the caller can track the progress of the task. |
Modifier and Type | Method and Description |
---|---|
QueueTaskFuture<RunT> |
ParameterizedJobMixIn.scheduleBuild2(int quietPeriod,
Action... actions)
Provides a standard implementation of an optional method of the same name in a
Job type to schedule a build with the ability to wait for its result. |
Modifier and Type | Method and Description |
---|---|
QueueTaskFuture<?> |
SCMTriggerItem.scheduleBuild2(int quietPeriod,
Action... actions) |
Copyright © 2018. All rights reserved.