Uses of Class
hudson.model.Queue.BuildableItem
-
Packages that use Queue.BuildableItem Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.model.queue hudson.slaves Code related to agents. -
-
Uses of Queue.BuildableItem in hudson.model
Methods in hudson.model that return types with arguments of type Queue.BuildableItem Modifier and Type Method Description List<Queue.BuildableItem>
Queue. getBuildableItems()
Gets the snapshot of allQueue.BuildableItem
s.List<Queue.BuildableItem>
Queue. getBuildableItems(Computer c)
Gets all theQueue.BuildableItem
s that are waiting for an executor in the givenComputer
.List<Queue.BuildableItem>
Queue. getPendingItems()
Gets the snapshot of allQueue.BuildableItem
s.Methods in hudson.model with parameters of type Queue.BuildableItem Modifier and Type Method Description CauseOfBlockage
Node. canTake(Queue.BuildableItem item)
Called by theQueue
to determine whether or not this node can take the given task.boolean
Queue.JobOffer. canTake(Queue.BuildableItem item)
Deprecated.discards information; preferQueue.JobOffer.getCauseOfBlockage(hudson.model.Queue.BuildableItem)
CauseOfBlockage
Queue.JobOffer. getCauseOfBlockage(Queue.BuildableItem item)
Checks whether theExecutor
represented by this object is capable of executing the given task.Method parameters in hudson.model with type arguments of type Queue.BuildableItem Modifier and Type Method Description protected LoadStatistics.LoadStatisticsSnapshot
LoadStatistics. computeSnapshot(Iterable<Queue.BuildableItem> queue)
Computes the self-consistent snapshot with the specified queue items. -
Uses of Queue.BuildableItem in hudson.model.queue
Fields in hudson.model.queue declared as Queue.BuildableItem Modifier and Type Field Description Queue.BuildableItem
MappingWorksheet. item
Queue.BuildableItem
for which we are trying to figure out the execution plan.Queue.BuildableItem
WorkUnitContext. item
Methods in hudson.model.queue with parameters of type Queue.BuildableItem Modifier and Type Method Description CauseOfBlockage
QueueTaskDispatcher. canTake(Node node, Queue.BuildableItem item)
Called whenQueue
is deciding where to execute the given task.int
AbstractQueueSorterImpl. compare(Queue.BuildableItem lhs, Queue.BuildableItem rhs)
Override this method to provide the ordering of the sort.void
QueueListener. onEnterBuildable(Queue.BuildableItem bi)
An item enters the buildable phase when all signals are green (or blue!) and it's just waiting for the scheduler to allocate it to the available executor.void
QueueListener. onLeaveBuildable(Queue.BuildableItem bi)
An item leaves the buildable phase.Method parameters in hudson.model.queue with type arguments of type Queue.BuildableItem Modifier and Type Method Description void
AbstractQueueSorterImpl. sortBuildableItems(List<Queue.BuildableItem> buildables)
abstract void
QueueSorter. sortBuildableItems(List<Queue.BuildableItem> buildables)
Sorts the buildable items list.Constructors in hudson.model.queue with parameters of type Queue.BuildableItem Constructor Description MappingWorksheet(Queue.BuildableItem item, List<? extends MappingWorksheet.ExecutorSlot> offers)
MappingWorksheet(Queue.BuildableItem item, List<? extends MappingWorksheet.ExecutorSlot> offers, Collection<? extends LoadPredictor> loadPredictors)
WorkUnitContext(Queue.BuildableItem item)
-
Uses of Queue.BuildableItem in hudson.slaves
Methods in hudson.slaves with parameters of type Queue.BuildableItem Modifier and Type Method Description CauseOfBlockage
NodeProperty. canTake(Queue.BuildableItem item)
Called by theNode
to help determine whether or not it should take the given task.
-