TaskProcessorIfc

An interface to represent the general concept of a task processor. A task processor is something that receives tasks and executes them.

Inheritors

Properties

Link copied to clipboard

Allows access to accumulated state (busy) usage.

Link copied to clipboard

Allows access to accumulated state (current) usage.

Link copied to clipboard
abstract 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
abstract 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

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

Link copied to clipboard

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

Link copied to clipboard
abstract val id: Int
Link copied to clipboard

Allows access to accumulated state (idle) usage.

Link copied to clipboard

Allows access to accumulated state (inactive) usage.

Link copied to clipboard

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

Link copied to clipboard

Indicates if a shutdown has been scheduled.

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

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

Link copied to clipboard
abstract val numTimesIdle: Double

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

Link copied to clipboard
abstract val numTimesInactive: Double

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

Link copied to clipboard
abstract val numTimesRepaired: Double

The number of times the processor has completed repair.

Link copied to clipboard
abstract val timeOfShutDown: Double

The time of the shutdown or infinity.

Link copied to clipboard

The time until a shutdown or infinity.

Link copied to clipboard
abstract val totalBusyTime: Double

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

Link copied to clipboard
abstract val totalCycleTime: Double

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

Link copied to clipboard
abstract val totalIdleTime: Double

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

Link copied to clipboard

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

Link copied to clipboard

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

Functions

Link copied to clipboard
abstract fun cancelShutDown()

Causes a pending shutdown event to be cancelled. If there is a task provider associated with the task processor it will be notified of the cancellation.

Link copied to clipboard
abstract fun hasNextTask(): Boolean

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

Link copied to clipboard
abstract fun isBusy(): Boolean

Indicates if the processor is in the busy state.

Link copied to clipboard
abstract fun isIdle(): Boolean

Indicates if the processor is in the idle state.

Link copied to clipboard
abstract fun isInactive(): Boolean

Indicates if the processor is in the inactive state.

Link copied to clipboard
abstract 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
abstract fun isShutDown(): Boolean

Indicates if the processor has been shutdown.

Link copied to clipboard
abstract fun numTasksInQ(): Int

The number of tasks waiting for the processor

Link copied to clipboard

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

Link copied to clipboard
abstract fun resetStates()

Causes the accumulated state information to be reset.

Link copied to clipboard
abstract fun scheduleShutDown(timeUntilShutdown: Double = 0.0)

Causes a shutdown event to be scheduled for the supplied time. The shutdown event is scheduled and the current task provider is notified of the pending shutdown. This allows the current task provider to react gracefully to the pending shutdown. If there is no task provider then no notification occurs. There is no task provider if the task processor has not been activated.

Link copied to clipboard
abstract fun setup()

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