From 18b6abc7293fa31f8e4f7f01377af50c8a5c02e7 Mon Sep 17 00:00:00 2001 From: Valar Date: Wed, 11 Dec 2019 23:48:45 +0530 Subject: [PATCH] Add job scheduling section --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 4e2ae9c..ffcd2d5 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ A curated list of awesome Java frameworks, libraries and software. - [IDE](#ide) - [Imagery](#imagery) - [Introspection](#introspection) + - [Job Scheduling](#job-scheduling) - [JSON Processing](#json-processing) - [JSON](#json) - [JVM and JDK](#jvm-and-jdk) @@ -484,6 +485,15 @@ _Libraries that help make the Java introspection and reflection API easier and f - [ReflectASM](https://github.com/EsotericSoftware/reflectasm) - ReflectASM is a very small Java library that provides high performance reflection by using code generation. - [Reflections](https://github.com/ronmamo/reflections) - Reflections scans your classpath, indexes the metadata, allows you to query it on runtime and may save and collect that information for many modules within your project. +### Job Scheduling + +*Libraries for scheduling background jobs.* + +- [Quartz](https://github.com/quartz-scheduler/quartz) - Feature-rich, open source job scheduling library that can be integrated within virtually any Java application. +- [Sundial](https://github.com/knowm/Sundial) - Lightweight framework to simply define jobs, define triggers and start the scheduler. +- [Wisp](https://github.com/Coreoz/Wisp) - Simple library with minimal footprint and straightforward API. +- [db-scheduler](https://github.com/kagkarlsson/db-scheduler) - Persistent and cluster-friendly scheduler. + ### JSON _Libraries for serializing and deserializing JSON to and from Java objects._