Java Theme Library

Does anyone know a good thread library for Java. This requires only a real requirement: I need to change the scheduler. You may have more requirements, so the setup will be enjoyable. Any advice or information about your experience with them would be great.

thank

+3
source share
3 answers

If the package java.util.concurrentdoes not meet your requirements, Quartz is an excellent open-source scheduler that allows you to plan jobs for repeated execution, as well as many additional features such as failure, load balancing, etc. I have used it for many years and love it, but if it java.util.concurrentmeets your needs, stick to it.

+3
source

Look at the package java.util.concurrent: Package Implementation Documentation . He must have everything you need.

+8
source

java.util.concurrent. , , ExecutorService.

, Java Concurrency .

+4
source

All Articles