trait AdaptiveWorkStealingForkJoinTasks extends ForkJoinTasks with AdaptiveWorkStealingTasks
- Alphabetic
- By Inheritance
- AdaptiveWorkStealingForkJoinTasks
- AdaptiveWorkStealingTasks
- ForkJoinTasks
- HavingForkJoinPool
- Tasks
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class AWSFJTWrappedTask[R, Tp] extends RecursiveAction with FJTWrappedTask[R, Tp] with AWSTWrappedTask[R, Tp]
- trait AWSTWrappedTask[R, Tp] extends WrappedTask[R, Tp]
- Definition Classes
- AdaptiveWorkStealingTasks
- trait FJTWrappedTask[R, +Tp] extends RecursiveAction with WrappedTask[R, Tp]
- Definition Classes
- ForkJoinTasks
- trait WrappedTask[R, +Tp] extends AnyRef
- Definition Classes
- Tasks
Abstract Value Members
- abstract val environment: ForkJoinPool
The type of the environment is more specific in the implementations.
The type of the environment is more specific in the implementations.
- Definition Classes
- ForkJoinTasks → Tasks
Concrete Value Members
- def execute[R, Tp](task: Task[R, Tp]): () => R
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.- Definition Classes
- ForkJoinTasks → Tasks
- def executeAndWaitResult[R, Tp](task: Task[R, Tp]): R
Executes a task on a fork/join pool and waits for it to finish.
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
- Definition Classes
- ForkJoinTasks → Tasks
- def forkJoinPool: ForkJoinPool
The fork/join pool of this collection.
The fork/join pool of this collection.
- Definition Classes
- ForkJoinTasks → HavingForkJoinPool
- def newWrappedTask[R, Tp](b: Task[R, Tp]): AWSFJTWrappedTask[R, Tp]
- Definition Classes
- AdaptiveWorkStealingForkJoinTasks → AdaptiveWorkStealingTasks → ForkJoinTasks
- def parallelismLevel: Int
Retrieves the parallelism level of the task execution environment.
Retrieves the parallelism level of the task execution environment.
- Definition Classes
- ForkJoinTasks → Tasks