class ForkJoinTaskSupport extends TaskSupport with AdaptiveWorkStealingForkJoinTasks
A task support that uses a fork join pool to schedule tasks.
- See also
scala.collection.parallel.TaskSupport for more information.
- Alphabetic
- By Inheritance
- ForkJoinTaskSupport
- AdaptiveWorkStealingForkJoinTasks
- AdaptiveWorkStealingTasks
- ForkJoinTasks
- HavingForkJoinPool
- TaskSupport
- Tasks
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ForkJoinTaskSupport(environment: ForkJoinPool = ForkJoinTasks.defaultForkJoinPool)
Type Members
-
class
WrappedTask
[R, Tp] extends RecursiveAction with AdaptiveWorkStealingForkJoinTasks.WrappedTask[R, Tp] with AdaptiveWorkStealingForkJoinTasks.WrappedTask[R, Tp]
- Definition Classes
- AdaptiveWorkStealingForkJoinTasks
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
val
environment: ForkJoinPool
- Definition Classes
- ForkJoinTaskSupport → ForkJoinTasks → Tasks
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
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
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
forkJoinPool: ForkJoinPool
The fork/join pool of this collection.
The fork/join pool of this collection.
- Definition Classes
- ForkJoinTasks → HavingForkJoinPool
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
newWrappedTask[R, Tp](b: Task[R, Tp]): WrappedTask[R, Tp]
- Definition Classes
- AdaptiveWorkStealingForkJoinTasks → AdaptiveWorkStealingTasks → ForkJoinTasks
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
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
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )