Skip to content

Instantly share code, notes, and snippets.

@romilptl
Created March 8, 2020 09:20
Show Gist options
  • Save romilptl/462b0bba7436dbab6c7c54860fc30e06 to your computer and use it in GitHub Desktop.
Save romilptl/462b0bba7436dbab6c7c54860fc30e06 to your computer and use it in GitHub Desktop.
Scheduled Task of an Application
{
"cron": [
{
"runnable": {
"target": "com.learning.monitoring.client.config.ScheduledTasks.sendNotifications"
},
"expression": "0 0/10 * * * ?"
}
],
"fixedDelay": [
{
"runnable": {
"target": "com.learning.monitoring.client.config.ScheduledTasks.scheduleTask_fixedDelay"
},
"initialDelay": 0,
"interval": 60000
}
],
"fixedRate": [
{
"runnable": {
"target": "com.learning.monitoring.client.config.ScheduledTasks.scheduleTask_fixedRate"
},
"initialDelay": 0,
"interval": 10000
}
],
"custom": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment