Cron Schedules

Class
Schedule
Next scheduled
Last run
frequent_example
Enqueue an ExampleJob with a random sample of configuration
ExampleJob
Schedule
* * * * * *
Next scheduled
{
  "key": "frequent_example",
  "class": "ExampleJob",
  "cron": "* * * * * *",
  "set": "Lambda/Callable",
  "description": "Enqueue an ExampleJob with a random sample of configuration",
  "args": "Lambda/Callable"
}
other_example
Enqueue an OtherJob occasionally
OtherJob
Schedule
*/15 * * * * *
Next scheduled
{
  "key": "other_example",
  "class": "OtherJob",
  "cron": "*/15 * * * * *",
  "set": {
    "queue": "default"
  },
  "description": "Enqueue an OtherJob occasionally"
}
batch_example
Enqueue a Batch
ExampleJob::BatchJob
Schedule
*/30 * * * * *
Next scheduled
{
  "key": "batch_example",
  "class": "ExampleJob::BatchJob",
  "cron": "*/30 * * * * *",
  "set": "None",
  "description": "Enqueue a Batch"
}
complex_schedule
OtherJob
Schedule
Lambda/Callable
Next scheduled
{
  "key": "complex_schedule",
  "class": "OtherJob",
  "cron": "Lambda/Callable",
  "set": "None",
  "description": "None"
}