scheduler
scheduler copied to clipboard
Job scheduling made easy.
I would like to see an option to start a job immediately and then run afterword at a scheduled time. Example: Run immediately, and thereafter every day at 8:00:00 ```...
Change `Rethinking Cron` link in README file
Hi, What if you want to store your task configuration parameters in a database or a yml/ini/js file? How would you map to those functions?
In ocassions we want to add some delay to a recurrent job that is different to the recurrent period itself. I add a `.Delay()` modifier that changes the time for...
Daily and weekly scheduling should be done by UTC time. A long running process which uses the scheduler would fail to execute at the correct time when a time change...
It looks like the specific time functions are triggered using subjective time based on the machine implementing this library. It'd be great if there were a way to specify UTC...
How about adding time.Duration parameter to job scheduling `scheduler.EveryDuration(time.Duration)`? So that it becomes easy for me to wrap it in other funcs? Since right now I need to closure some...