Class: PuppetX::PuppetLabs::ScheduledTask::Task::TASK_STATE

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet_x/puppetlabs/scheduled_task/task.rb

Overview

Constant Summary collapse

TASK_STATE_UNKNOWN =

The state of the task is unknown.

0
TASK_STATE_DISABLED =

The task is registered but is disabled and no instances of the task are queued or running. The task cannot be run until it is enabled.

1
TASK_STATE_QUEUED =

Instances of the task are queued.

2
TASK_STATE_READY =

The task is ready to be executed, but no instances are queued or running.

3
TASK_STATE_RUNNING =

One or more instances of the task is running.

4