cron/README.md

31 lines
732 B
Markdown
Raw Permalink Normal View History

2018-04-19 16:27:04 +02:00
Fork from https://github.com/set-de/cron
2018-04-19 16:27:04 +02:00
2017-03-01 19:32:54 +01:00
# cron
2014-05-30 10:37:16 +02:00
2014-05-30 10:43:47 +02:00
Cron expression parser and evaluator.
2014-05-30 10:37:16 +02:00
2014-05-30 10:43:47 +02:00
Allows for specifying cron - expressions (in Unix or Quartz like format) and evaluating when it will next match.
2017-03-01 19:32:54 +01:00
# Usage
2017-03-01 19:32:54 +01:00
See javadoc
2016-09-11 21:46:02 +02:00
2017-03-01 19:32:54 +01:00
# Change history and credits
2019-08-02 17:41:56 +02:00
## version 1.5:
* 2019-08-02: performance improvement when next time is further into the future (java8) by @n3world
2017-03-01 19:32:54 +01:00
## version 1.4:
* 2017-02-13: added support for java6 (supports android 4) by @adelnizamutdinov
2017-03-01 19:33:14 +01:00
* 2016-09-11: rewritten to Java 8 DateTime by @zemiak
2017-03-01 19:32:54 +01:00
## version 1.3:
* 2015-09-23: added timezone to tests by @alf
2017-03-01 19:32:54 +01:00
## version 1.2:
* 2015-08-05: added protection for endless loop when looking up Feb 30th & optional seconds by @michaelknigge