Packages

trait Tasks extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tasks
  2. AnyRef
  3. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait WrappedTask[R, +Tp] extends AnyRef

Abstract Value Members

  1. abstract val environment: AnyRef

    The type of the environment is more specific in the implementations.

  2. abstract def execute[R, Tp](fjtask: Task[R, Tp]): () ⇒ R

    Executes a task and returns a future.

    Executes a task and returns a future. Forwards an exception if some task threw it.

  3. abstract def executeAndWaitResult[R, Tp](task: Task[R, Tp]): R

    Executes a result task, waits for it to finish, then returns its result.

    Executes a result task, waits for it to finish, then returns its result. Forwards an exception if some task threw it.

  4. abstract def parallelismLevel: Int

    Retrieves the parallelism level of the task execution environment.

Concrete Value Members

  1. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from Tasks to CollectionsHaveToParArray[Tasks, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Tasks) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray