cronut
cronut copied to clipboard
A Clojure Companion to Quartz
We can start a simple schedule anytime (e.g. every 60s) but we don't currently support starting a simple schedule with a delay. We do support starting at a specific point...
E.g. 1. Delete a job 2. Pause a job 3. All the other actions Java allows on the mutable schedule object..
Cronut defaults to using the StdSchedulerFactory/defaultScheduler, that means you can only have one scheduler configured per JVM. We should extend the scheduler configuration to take a :factory parameter that is...
Follow the same approach as SimpleSchedule and CronSchedule
Follow the same approach as SimpleSchedule and CronSchedule
Should be able to provide your own ProxyJob to: 1. Manage base exception handling 2. Record metrics / etc / etc
2.4.0: Java 8 + Javax 2.5.0: Java 11 + Jakarta More details here: https://github.com/quartz-scheduler/quartz/discussions/1195