Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Specifies an array of processes to run on a timed basis. For each object in the array, you should provide the following:

  • task - the Profound.js script to run
  • startDelay - the delay (in minutes) after the server starts to run the task for the first time
  • interval - the interval (in minutes) between each subsequent run of the task
Code Block
languagejs
titleSample Configuration
"timedTasks": [
  {
    "task": "mytask.js",
    "startDelay": 1,
    "interval": 5
  }
]