Fork/Join
Explore the Java Fork Join framework introduced in Java 7 to understand how to implement concurrent programming using ForkJoinPool and RecursiveTask. This lesson guides you through writing recursive tasks for breaking down problems and efficiently utilizing multiple processors.
We'll cover the following...
We'll cover the following...
Fork-join framework
There are new Java concurrency APIs (JSR 166y) referred to as the Fork-join framework. It is designed for tasks that can be broken down and takes advantage of multiple processors. The following are the core classes (all located in java.util.concurrent): ...