-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
Milestone
Description
I'm looking at using this framework for scheduling. Everything will be configuration based, but it can change at runtime. Is there a better way of removing a schedule than shutting everything down and rescheduling everything? Ideally it would be something like
scheduler.remove("job-name");
or
scheduler.findJob("job-name").get().close();
If a job is already running it should be allowed to complete, and whether it is running or not it should not be scheduled again.