Uses of Class
hudson.model.Queue.BlockedItem
-
Packages that use Queue.BlockedItem Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.model.queue -
-
Uses of Queue.BlockedItem in hudson.model
Methods in hudson.model that return types with arguments of type Queue.BlockedItem Modifier and Type Method Description protected List<Queue.BlockedItem>
Queue. getBlockedItems()
Gets the snapshot of allQueue.BlockedItem
s. -
Uses of Queue.BlockedItem in hudson.model.queue
Fields in hudson.model.queue with type parameters of type Queue.BlockedItem Modifier and Type Field Description static Comparator<Queue.BlockedItem>
QueueSorter. DEFAULT_BLOCKED_ITEM_COMPARATOR
A comparator that sortsQueue.BlockedItem
instances based on how long they have been in the queue.Methods in hudson.model.queue with parameters of type Queue.BlockedItem Modifier and Type Method Description void
QueueListener. onEnterBlocked(Queue.BlockedItem bi)
An item enters the blocked phase when there's someone saying "NO" to it proceeding to the buildable phase, such asQueueTaskDispatcher
.void
QueueListener. onLeaveBlocked(Queue.BlockedItem bi)
An item leaves the blocked phase and becomes buildable when there's no one vetoing.Method parameters in hudson.model.queue with type arguments of type Queue.BlockedItem Modifier and Type Method Description void
QueueSorter. sortBlockedItems(List<Queue.BlockedItem> blockedItems)
Sorts the blocked items list.
-