cronスケジュール

クラス
スケジュール
次回予定日時
前回実行日時
frequent_example
Enqueue an ExampleJob with a random sample of configuration
ExampleJob
スケジュール
* * * * * *
次回予定日時
前回実行日時
{
  "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
スケジュール
*/15 * * * * *
次回予定日時
前回実行日時
{
  "key": "other_example",
  "class": "OtherJob",
  "cron": "*/15 * * * * *",
  "set": {
    "queue": "default"
  },
  "description": "Enqueue an OtherJob occasionally"
}
batch_example
Enqueue a Batch
ExampleJob::BatchJob
スケジュール
*/30 * * * * *
次回予定日時
前回実行日時
{
  "key": "batch_example",
  "class": "ExampleJob::BatchJob",
  "cron": "*/30 * * * * *",
  "set": "None",
  "description": "Enqueue a Batch"
}
complex_schedule
OtherJob
スケジュール
Lambda/Callable
次回予定日時
前回実行日時
{
  "key": "complex_schedule",
  "class": "OtherJob",
  "cron": "Lambda/Callable",
  "set": "None",
  "description": "None"
}