Wisp
Wisp copied to clipboard
A simple Java Scheduler library with a minimal footprint and a straightforward API
Is it possible to add a Scheduler Interface for users to implement it?
Thank you, this is a great library and very useful. One thing that would be handy is to know the next time a job is going to run after it...
[Cron-utils](https://github.com/jmrozanec/cron-utils) does not follow the spirit of Wisp: keep it small and efficient. Moreover, cron-utils has recurring security issues due to poor design choices and especially relying to `javax.el`. https://github.com/frode-carlsen/cron/tree/master/java8...
I'd like to say big thanks. I used this library in my big project. I created a customer scheduler that allows to run between certain time and in that timezone....
Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.2.3 to 1.2.13. Commits 2648b9e prepare release 1.2.13 bb09515 fix CVE-2023-6378 4573294 start work on 1.2.13-SNAPSHOT a388193 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x de44dc4 prepare release...
To not block the JVM from shutting down whereas there is no job running
Can we specify a different ThreadFactory(from the WispThreadFactory)?
Virtual threads are becoming a reality since Java 19, though currently they are only available through preview usage of the JVM: `--enable-preview`. When virtual threads are fully part of the...
The Scheduler class now extends AutoClosable and will automatically call Scheduler#gracefullyShutdown() when it's time to say goodbye. This is useful with try-with-resources statements