rrsdev opened a new issue, #16199:
URL: https://github.com/apache/grails-core/issues/16199
I'm sure this is a more complex task than it sounds, but the basic idea
mightbe something like:
(application.yml):
```
quartz;
triggers:
- name: 'cronTrigger1'
type: cron
cronExpression: '0 0 2 * * ?'
- name: 'cronTrigger2'
type: cron
cronExpression: '0 0 12 * * 1'
- name: 'simpleTrigger1'
type: simple
startDelay:10000,
repeatInterval: 30000,
repeatCount: 10
```
Then perhaps the Job would look like:
```
class MyJob {
static triggers = {
configured name: 'cronTrigger1'
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]