t

scala.collection.parallel

AdaptiveWorkStealingForkJoinTasks

trait AdaptiveWorkStealingForkJoinTasks extends ForkJoinTasks with AdaptiveWorkStealingTasks

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AdaptiveWorkStealingForkJoinTasks
  2. AdaptiveWorkStealingTasks
  3. ForkJoinTasks
  4. HavingForkJoinPool
  5. Tasks
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class AWSFJTWrappedTask[R, Tp] extends RecursiveAction with FJTWrappedTask[R, Tp] with AWSTWrappedTask[R, Tp]
  2. trait AWSTWrappedTask[R, Tp] extends WrappedTask[R, Tp]
    Definition Classes
    AdaptiveWorkStealingTasks
  3. trait FJTWrappedTask[R, +Tp] extends RecursiveAction with WrappedTask[R, Tp]
    Definition Classes
    ForkJoinTasks
  4. trait WrappedTask[R, +Tp] extends AnyRef
    Definition Classes
    Tasks

Abstract Value Members

  1. 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
    ForkJoinTasksTasks

Concrete Value Members

  1. 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
    ForkJoinTasksTasks
  2. 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
    ForkJoinTasksTasks
  3. def forkJoinPool: ForkJoinPool

    The fork/join pool of this collection.

    The fork/join pool of this collection.

    Definition Classes
    ForkJoinTasksHavingForkJoinPool
  4. def newWrappedTask[R, Tp](b: Task[R, Tp]): AWSFJTWrappedTask[R, Tp]
  5. def parallelismLevel: Int

    Retrieves the parallelism level of the task execution environment.

    Retrieves the parallelism level of the task execution environment.

    Definition Classes
    ForkJoinTasksTasks