QuickLib icon indicating copy to clipboard operation
QuickLib copied to clipboard

Improvement request: Scheduled Task start time based on cron

Open andre-f-m opened this issue 5 years ago • 1 comments

I know it might not be easy to implement now because the way it was created, but it would be interesting if the TScheduledTasks could start and repeat at specific time similar to cron expression Examples: 5 4 * * * : every day at 4:05am 0 22 * * 1-5 : At 22:00 on every day-of-week from Monday through Friday */5 * * * * : At every 5th minute The not so good part from traditional cron is that it start in minute interval and ideally it would be good having second intervals (adding one additional number/expression). 0 0 * * * * : every day and hour when min = 0 and second = 0 */5 * * * * * : every 5th second (e.g. 0, 5, 10, 15, ...)

andre-f-m avatar Jun 27 '20 15:06 andre-f-m