Uses of Class
hudson.model.Queue.Item
-
Packages that use Queue.Item Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.model.queue hudson.widgets jenkins.model jenkins.security jenkins.widgets -
-
Uses of Queue.Item in hudson.model
Subclasses of Queue.Item in hudson.model Modifier and Type Class Description class
Queue.BlockedItem
Queue.Item
in theQueue.blockedProjects
stage.static class
Queue.BuildableItem
Queue.Item
in theQueue.buildables
stage.static class
Queue.LeftItem
Queue.Item
in theQueue.leftItems
stage.static class
Queue.NotWaitingItem
Common part betweenQueue.BlockedItem
andQueue.BuildableItem
.static class
Queue.WaitingItem
Queue.Item
in theQueue.waitingList
stage.Methods in hudson.model that return Queue.Item Modifier and Type Method Description Queue.Item
Queue. getItem(long id)
Queue.Item
Queue. getItem(Queue.Task t)
Gets the information about the queue item for the given project.Queue.Item[]
Queue. getItems()
Gets a snapshot of items in the queue.Queue.Item
AbstractProject. getQueueItem()
Queue.Item
Job. getQueueItem()
If this job is in the build queue, return its item.Methods in hudson.model that return types with arguments of type Queue.Item Modifier and Type Method Description List<Queue.Item>
Queue. getApproximateItemsQuickly()
Deprecated.UseQueue.getItems()
directly.List<Queue.Item>
View. getApproximateQueueItemsQuickly()
Deprecated.UseView.getQueueItems()
.List<Queue.Item>
Queue. getItems(Queue.Task t)
Gets the information about the queue item for the given project.List<Queue.Item>
View. getQueueItems()
List<Queue.Item>
Queue. getUnblockedItems()
Gets all items that are in the queue but not blockedMethods in hudson.model with parameters of type Queue.Item Modifier and Type Method Description boolean
Queue. cancel(Queue.Item item)
void
CauseAction. foldIntoExisting(Queue.Item item, Queue.Task owner, List<Action> otherActions)
default Authentication
Queue.Task. getDefaultAuthentication(Queue.Item item)
Deprecated.default org.springframework.security.core.Authentication
Queue.Task. getDefaultAuthentication2(Queue.Item item)
This method allows the task to provide the default fallback authentication object to be used whenQueueItemAuthenticator
fails to authenticate the build.protected abstract boolean
LoadStatistics. matches(Queue.Item item, SubTask subTask)
protected boolean
OverallLoadStatistics. matches(Queue.Item item, SubTask subTask)
Constructors in hudson.model with parameters of type Queue.Item Constructor Description Item(Queue.Item item)
LeftItem(Queue.Item cancelled)
When item is cancelled. -
Uses of Queue.Item in hudson.model.queue
Methods in hudson.model.queue that return Queue.Item Modifier and Type Method Description Queue.Item
ScheduleResult.Created. getItem()
Queue.Item
ScheduleResult.Existing. getItem()
Queue.Item
ScheduleResult. getItem()
UnlessScheduleResult.isRefused()
is true, this method either returns the newly created item in the queue or the existing item that's already in the queue that matched the submitted task.Methods in hudson.model.queue with parameters of type Queue.Item Modifier and Type Method Description CauseOfBlockage
QueueTaskDispatcher. canRun(Queue.Item item)
Called wheneverQueue
is considering ifQueue.Item
is ready to execute immediately (which doesn't necessarily mean that it gets executed right away — it's still subject to executor availability), or if it should be considered blocked.static ScheduleResult.Existing
ScheduleResult. existing(Queue.Item i)
void
FoldableAction. foldIntoExisting(Queue.Item item, Queue.Task owner, List<Action> otherActions)
Notifies that theQueue.Task
that "owns" this action (that is, the task for which this action is submitted) is considered as a duplicate.static Authentication
Tasks. getDefaultAuthenticationOf(Queue.Task t, Queue.Item item)
Deprecated.callQueue.Task.getDefaultAuthentication(Item)
directly -
Uses of Queue.Item in hudson.widgets
Methods in hudson.widgets that return Queue.Item Modifier and Type Method Description Queue.Item
BuildHistoryWidget. getQueuedItem()
Returns the first queue item if the owner is scheduled for execution in the queue.Methods in hudson.widgets that return types with arguments of type Queue.Item Modifier and Type Method Description List<Queue.Item>
BuildHistoryWidget. getQueuedItems()
Returns the queue item if the owner is scheduled for execution in the queue, in REVERSE ORDER -
Uses of Queue.Item in jenkins.model
Methods in jenkins.model that return Queue.Item Modifier and Type Method Description static Queue.Item
ParameterizedJobMixIn. scheduleBuild2(Job<?,?> job, int quietPeriod, Action... actions)
Convenience method to schedule a build.Methods in jenkins.model with parameters of type Queue.Item Modifier and Type Method Description protected boolean
UnlabeledLoadStatistics. matches(Queue.Item item, SubTask subTask)
-
Uses of Queue.Item in jenkins.security
Methods in jenkins.security with parameters of type Queue.Item Modifier and Type Method Description Authentication
QueueItemAuthenticator. authenticate(Queue.Item item)
Deprecated.org.springframework.security.core.Authentication
QueueItemAuthenticator. authenticate2(Queue.Item item)
Determines the identity in which theQueue.Executable
will run as. -
Uses of Queue.Item in jenkins.widgets
Fields in jenkins.widgets with type parameters of type Queue.Item Modifier and Type Field Description List<HistoryPageEntry<Queue.Item>>
HistoryPageFilter. queueItems
Method parameters in jenkins.widgets with type arguments of type Queue.Item Modifier and Type Method Description void
HistoryPageFilter. add(Iterable<T> runItems, List<Queue.Item> queueItems)
Add run items and queued items to the History page.
-