cron
Purpose
A cron trigger that executes based on the defined cron expressionExamples
class MyJob { static triggers = { cron name:'cronTrigger', startDelay:10000, cronExpression: '0/6 * 15 * * ?' } def execute() { println "Job run!" } }
Adds Quartz job scheduling features
(Quick Reference)
cronPurposeA cron trigger that executes based on the defined cron expressionExamplesclass MyJob { static triggers = { cron name:'cronTrigger', startDelay:10000, cronExpression: '0/6 * 15 * * ?' } def execute() { println "Job run!" } } |