TransientTaskProcessor

Responsible for executing tasks that have been supplied. This processor is transient. It is not a model element and thus does not participate in automatic model element actions such as initialization, warmup, and replication ending.

Parameters

name

the name of the processor

taskQueue

a queue that will be used to hold tasks while the processor is processing its current task. The default is a non-statistical based queue.

Constructors

Link copied to clipboard
constructor(name: String? = null, taskQueue: QueueIfc<TaskProcessingSystem.Task> = TaskQueue())

Properties

Link copied to clipboard
open override val busyState: StateAccessorIfc

Allows access to accumulated state (busy) usage.

Link copied to clipboard
open override val currentState: StateAccessorIfc

Allows access to accumulated state (current) usage.

Link copied to clipboard

The task that the processor is currently executing

Link copied to clipboard
open override val fractionTimeBusy: Double

The fraction of time up to the current time that the processor has been in the busy state.

Link copied to clipboard
open override val fractionTimeIdle: Double

The fraction of time up to the current time that the processor has been in the idle state.

Link copied to clipboard
open override val fractionTimeInactive: Double

The fraction of time up to the current time that the processor has been in the active state.

Link copied to clipboard
open override val fractionTimeInRepair: Double

The fraction of time up to the current time that the processor has been in the in-repair state.

Link copied to clipboard
open override val id: Int
Link copied to clipboard
open override val idleState: StateAccessorIfc

Allows access to accumulated state (idle) usage.

Link copied to clipboard
open override val inactiveState: StateAccessorIfc

Allows access to accumulated state (inactive) usage.

Link copied to clipboard
open override val inRepairState: StateAccessorIfc

Allows access to accumulated state (in-repair) usage.

Link copied to clipboard
open override val isShutdownPending: Boolean

Indicates if a shutdown has been scheduled.

Link copied to clipboard
open override var label: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val numTimesBusy: Double

The number of times that the processor has exited the busy state.

Link copied to clipboard
open override val numTimesIdle: Double

The number of times that the processor has completed an idle period.

Link copied to clipboard
open override val numTimesInactive: Double

The number of times that the processor has completed inactive periods.

Link copied to clipboard
open override val numTimesRepaired: Double

The number of times the processor has completed repair.

Link copied to clipboard

The task that was previously executed by the processor

Link copied to clipboard

Indicates if the processor is shutdown and will no longer process tasks.

Link copied to clipboard
open override val timeOfShutDown: Double

The time of the shutdown or infinity.

Link copied to clipboard
open override val timeUntilShutdown: Double

The time until a shutdown or infinity.

Link copied to clipboard
open override val totalBusyTime: Double

The total time up to the current time that the processor has been busy.

Link copied to clipboard
open override val totalCycleTime: Double

The total time up to the current time that the processor has been in any state.

Link copied to clipboard
open override val totalIdleTime: Double

The total time up to the current time that the processor has been idle.

Link copied to clipboard
open override val totalInactiveTime: Double

The total time up to the current time that the processor has been in the inactive state.

Link copied to clipboard
open override val totalInRepairTime: Double

The total time up to the current time that the processor has been in the repaired state.

Functions

Link copied to clipboard
open override fun cancelShutDown()

Causes a pending shutdown event to be cancelled. If there are waiting tasks associated with the task processor, they will be notified of the cancellation.

Link copied to clipboard
open override fun hasNextTask(): Boolean

Indicates true if selectNextTask() results in a non-null task

Link copied to clipboard
open override fun isBusy(): Boolean

Indicates if the processor is in the busy state.

Link copied to clipboard
open override fun isIdle(): Boolean

Indicates if the processor is in the idle state.

Link copied to clipboard
open override fun isInactive(): Boolean

Indicates if the processor is in the inactive state.

Link copied to clipboard
open override fun isInRepair(): Boolean

Indicates if the processor is in the in-repair state.

Link copied to clipboard

Indicates if the processor has not been shutdown.

Link copied to clipboard
override fun isShutDown(): Boolean

Indicates if the processor has been shutdown.

Link copied to clipboard
open override fun numTasksInQ(): Int

The number of tasks waiting for the processor

Link copied to clipboard
open override fun receive(task: TaskProcessingSystem.Task)

Receives the task for processing. Enqueues the task and if the processor is idle, activates the processor to process tasks.

Link copied to clipboard
open override fun resetStates()

Causes the accumulated state information to be reset.

Link copied to clipboard
open override fun scheduleShutDown(timeUntilShutdown: Double)

Causes a shutdown event to be scheduled for the supplied time. The shutdown event is scheduled and any waiting tasks are notified of the pending shutdown. This allows the tasks to react gracefully to the pending shutdown.

Link copied to clipboard
open override fun setup()

Cause the task processor to be setup (initialized) for processing