Java EE 7 (JSR 236) - Concurrency Utilities | kodcu.com
Concurrency Utilities (JSR 236) is a new Java EE standard that comes with the Java EE 7 specification. This standard is about the presentation of Executor API which was introduced with Java 1.5 as container-side and managed objects.
Executor API is located under the High Level Concurrency Objects title in the Java SE documents which are presented by Oracle. Executor API provides Thread management efficiently through the objects it offers. In general, this efficiency is provided by a several of Thread Pool mechanisms. .
Thread Pooling
Thread pools contain creating a specified number of Worker Thread and running of the user-defined tasks with these worker threads. In this way, maximum running user-defined tasks are limited by Pool Size and system resources are being used efficiently.
Read full article from Java EE 7 (JSR 236) - Concurrency Utilities | kodcu.com
No comments:
Post a Comment