Uses of Class
hudson.model.Queue.WaitingItem
-
Packages that use Queue.WaitingItem Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.model.queue -
-
Uses of Queue.WaitingItem in hudson.model
Methods in hudson.model that return Queue.WaitingItem Modifier and Type Method Description Queue.WaitingItem
Queue. schedule(AbstractProject p)
Schedule a new build for this project.Queue.WaitingItem
Queue. schedule(Queue.Task p, int quietPeriod)
Queue.WaitingItem
Queue. schedule(Queue.Task p, int quietPeriod, Action... actions)
Convenience wrapper method aroundQueue.schedule(Task, int, List)
Queue.WaitingItem
Queue. schedule(Queue.Task p, int quietPeriod, List<Action> actions)
Deprecated.as of 1.521 UseQueue.schedule2(Task, int, List)
Methods in hudson.model with parameters of type Queue.WaitingItem Modifier and Type Method Description int
Queue.WaitingItem. compareTo(Queue.WaitingItem that)
void
Queue.Saver. onEnterWaiting(Queue.WaitingItem wi)
Constructors in hudson.model with parameters of type Queue.WaitingItem Constructor Description BlockedItem(Queue.WaitingItem wi)
BuildableItem(Queue.WaitingItem wi)
NotWaitingItem(Queue.WaitingItem wi)
-
Uses of Queue.WaitingItem in hudson.model.queue
Methods in hudson.model.queue that return Queue.WaitingItem Modifier and Type Method Description Queue.WaitingItem
ScheduleResult.Created. getCreateItem()
Queue.WaitingItem
ScheduleResult. getCreateItem()
IfScheduleResult.isCreated()
returns true, then this method returns the newly created item, which is always of the typeQueue.WaitingItem
.Methods in hudson.model.queue with parameters of type Queue.WaitingItem Modifier and Type Method Description static ScheduleResult.Created
ScheduleResult. created(Queue.WaitingItem i)
void
QueueListener. onEnterWaiting(Queue.WaitingItem wi)
When a task is submitted to the queue, it first gets to the waiting phase, where it spends until the quiet period runs out and the item becomes executable.void
QueueListener. onLeaveWaiting(Queue.WaitingItem wi)
An item leaves the waiting phase when the current time of the system is past its due date.
-