Description of the task
const task = new Task({
schedule: '* * 10 * * *',
action: () => performActionMethod()
})
task.start()
Action to run on job triggered
Task ID
Inter job that will trigger the action (actual task)
Last task run
Task logger
Task origin object
ID counter
Task pool
Run the task action
The return of the task action
Enable the task
const task = new Task({ ... })
task.start()
Disable the task
const task = new Task({ ... })
task.start()
...
task.stop()
Generated using TypeDoc
Cron task handled by Modules