| Package | Description |
|---|---|
| java8.util.concurrent |
The Java 7 and Java 8 utility classes commonly used in concurrent programming.
|
| Modifier and Type | Method and Description |
|---|---|
static ForkJoinPool |
ForkJoinPool.commonPool()
Returns the common pool instance.
|
ForkJoinPool |
ForkJoinWorkerThread.getPool()
Returns the pool hosting this thread.
|
static ForkJoinPool |
ForkJoinTask.getPool()
Returns the pool hosting the current task execution, or null
if this task is executing outside of any ForkJoinPool.
|
| Modifier and Type | Method and Description |
|---|---|
ForkJoinWorkerThread |
ForkJoinPool.ForkJoinWorkerThreadFactory.newThread(ForkJoinPool pool)
Returns a new worker thread operating in the given pool.
|
| Constructor and Description |
|---|
ForkJoinWorkerThread(ForkJoinPool pool)
Creates a ForkJoinWorkerThread operating in the given pool.
|