set up initial classes

This commit is contained in:
2024-02-25 11:18:37 +01:00
parent a9df4bb965
commit 6ef8fee79a
10 changed files with 68 additions and 38 deletions

View File

@@ -5,43 +5,26 @@
{
"jobName": "Print schedule",
"jobType": "cyclic",
"jobFunction": "printScheduler",
"jobFunction": "output_schedule",
"dtTimeDelta": {
"minutes": 15
}
},
{
"jobName": "Example to show all possible scheduling options...",
"jobType": "once",
"jobFunction": "foo",
"dtTime": {
"_comment": "for minutely,hourly,daily,weekly & once jobs....",
"second": 0,
"minute": 0,
"hour": 0,
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
]
},
"jobName": "Output Alerts",
"jobType": "cyclic",
"jobFunction": "output_alerts",
"dtTimeDelta": {
"_comment": "for cyclic & once jobs, in x minutes....",
"minutes": 0
},
"dtDateTime": {
"_comment": "for once jobs, at point in time....",
"year": 2022,
"month": 1,
"day": 1,
"hour": 0,
"minute": 0
"seconds": 5
}
},
{
"jobName": "Update Alerts",
"jobType": "cyclic",
"jobFunction": "update_alerts",
"dtTimeDelta": {
"minutes": 1
}
}
]
}