ForkJoinTaskSupport
A task support that uses a fork join pool to schedule tasks.
A task support that uses a fork join pool to schedule tasks.
- See also
scala.collection.parallel.TaskSupport for more information.
Type members
Inherited classlikes
Value members
Inherited methods
Executes a task and does not wait for it to finish - instead returns a future.
Executes a task and does not wait for it to finish - instead returns a future.
If the current thread is a fork/join worker thread, the task's fork
method will
be invoked. Otherwise, the task will be executed on the fork/join pool.
- Inherited from
- ForkJoinTasks
Executes a task on a fork/join pool and waits for it to finish. Returns its result when it does.
Executes a task on a fork/join pool and waits for it to finish. Returns its result when it does.
If the current thread is a fork/join worker thread, the task's fork
method will
be invoked. Otherwise, the task will be executed on the fork/join pool.
- Returns
the result of the task
- Inherited from
- ForkJoinTasks
The fork/join pool of this collection.
The fork/join pool of this collection.
- Inherited from
- ForkJoinTasks