TaskQueue

A task queue can hold tasks for a processor. This class does not collect queueing statistics.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
open override val isEmpty: Boolean

Returns whether the queue is empty.

Link copied to clipboard
open override val isNotEmpty: Boolean

Returns true if the queue is not empty

Link copied to clipboard
open override val size: Int

Gets the size (number of elements) of the queue.

Functions

Link copied to clipboard
open override fun clear()

Removes all the elements from this collection

Link copied to clipboard
open operator override fun contains(qObj: TaskProcessingSystem.Task): Boolean

Returns true if this queue contains the specified element. More formally, returns true if and only if this list contains at least one element e such that (o==null ? e==null : o.equals(e)).

Link copied to clipboard
open override fun enqueue(qObject: TaskProcessingSystem.Task)

Places the QObject in the queue, with the specified priority Automatically, updates the number in queue response variable.

Link copied to clipboard
open operator override fun iterator(): Iterator<TaskProcessingSystem.Task>
Link copied to clipboard
open override fun peekNext(): TaskProcessingSystem.Task?

Returns a reference to the QObject representing the item that is next to be removed from the queue according to the queue discipline that was specified.

Link copied to clipboard

Removes the next item from the queue according to the queue discipline that was specified. Returns a reference to the QObject representing the item that was removed