In my application I need to stop/continue the execution of scheduled
jobs. I can use job.uneschedule to stop a job, but is there a way to
start the job again, something like "job.schedule"?
Thank you,
Henrique
Hello Henrique,
there is no such thing yet. You could unschedule and then reschedule though.
I think it's an excellent idea. I will add that.
Thanks for the suggestion,
--
John Mettraux - http://lambda.io/processi
Hello Henrique,
I've just added Job#pause and #resume and Scheduler#pause(job_id) and
#resume(job_id) to rufus-scheduler:
https://github.com/jmettraux/rufus-scheduler/commit/b4949fa6d8166e74d6eab560f53a53348e6a5023
It's part of rufus-scheduler 2.0.14 which just got released.
Many thanks,