scala.collection

parallel

package parallel

Package object for parallel collections.

Linear Supertypes
AnyRef, Any
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. parallel
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait AdaptiveWorkStealingForkJoinTasks extends ForkJoinTasks with AdaptiveWorkStealingTasks

  2. trait AdaptiveWorkStealingTasks extends Tasks

    This trait implements scheduling by employing an adaptive work stealing technique.

  3. trait Combiner[-Elem, +To] extends Builder[Elem, To] with Sizing with Parallel

    The base trait for all combiners.

  4. trait CombinerFactory[U, Repr] extends AnyRef

  5. class ExecutionContextTaskSupport extends TaskSupport with ExecutionContextTasks

    A task support that uses an execution context to schedule tasks.

  6. trait ExecutionContextTasks extends Tasks

    This tasks implementation uses execution contexts to spawn a parallel computation.

  7. trait FactoryOps[From, Elem, To] extends AnyRef

  8. class ForkJoinTaskSupport extends TaskSupport with AdaptiveWorkStealingForkJoinTasks

    A task support that uses a fork join pool to schedule tasks.

  9. trait ForkJoinTasks extends Tasks with HavingForkJoinPool

    An implementation trait for parallel tasks based on the fork/join framework.

  10. trait HavingForkJoinPool extends AnyRef

    A trait describing objects that provide a fork/join pool.

  11. trait IterableSplitter[+T] extends AugmentedIterableIterator[T] with Splitter[T] with Signalling with DelegatedSignalling

    Parallel iterators allow splitting and provide a remaining method to obtain the number of elements remaining in the iterator.

  12. trait ParIterable[+T] extends GenIterable[T] with GenericParTemplate[T, ParIterable] with ParIterableLike[T, ParIterable[T], scala.Iterable[T]]

    A template trait for parallel iterable collections.

  13. trait ParIterableLike[+T, +Repr <: ParIterable[T], +Sequential <: scala.Iterable[T] with IterableLike[T, Sequential]] extends GenIterableLike[T, Repr] with CustomParallelizable[T, Repr] with Parallel with HasNewCombiner[T, Repr]

    A template trait for parallel collections of type ParIterable[T].

  14. trait ParMap[K, +V] extends GenMap[K, V] with GenericParMapTemplate[K, V, ParMap] with ParIterable[(K, V)] with ParMapLike[K, V, ParMap[K, V], Map[K, V]]

    A template trait for parallel maps.

  15. trait ParMapLike[K, +V, +Repr <: ParMapLike[K, V, Repr, Sequential] with ParMap[K, V], +Sequential <: Map[K, V] with MapLike[K, V, Sequential]] extends GenMapLike[K, V, Repr] with ParIterableLike[(K, V), Repr, Sequential]

    A template trait for mutable parallel maps.

  16. trait ParSeq[+T] extends GenSeq[T] with ParIterable[T] with GenericParTemplate[T, ParSeq] with ParSeqLike[T, ParSeq[T], scala.Seq[T]]

    A template trait for parallel sequences.

  17. trait ParSeqLike[+T, +Repr <: ParSeq[T], +Sequential <: scala.Seq[T] with SeqLike[T, Sequential]] extends GenSeqLike[T, Repr] with ParIterableLike[T, Repr, Sequential]

    A template trait for sequences of type ParSeq[T], representing parallel sequences with element type T.

  18. trait ParSet[T] extends GenSet[T] with GenericParTemplate[T, ParSet] with ParIterable[T] with ParSetLike[T, ParSet[T], Set[T]]

    A template trait for parallel sets.

  19. trait ParSetLike[T, +Repr <: ParSetLike[T, Repr, Sequential] with ParSet[T], +Sequential <: Set[T] with SetLike[T, Sequential]] extends GenSetLike[T, Repr] with ParIterableLike[T, Repr, Sequential]

    A template trait for parallel sets.

  20. trait PreciseSplitter[+T] extends Splitter[T]

    A precise splitter (or a precise split iterator) can be split into arbitrary number of splitters that traverse disjoint subsets of arbitrary sizes.

  21. trait SeqSplitter[+T] extends IterableSplitter[T] with AugmentedSeqIterator[T] with PreciseSplitter[T]

    Parallel sequence iterators allow splitting into arbitrary subsets.

  22. trait Splitter[+T] extends Iterator[T]

    A splitter (or a split iterator) can be split into more splitters that traverse over disjoint subsets of elements.

  23. trait Task[R, +Tp] extends AnyRef

  24. trait TaskSupport extends Tasks

    A trait implementing the scheduling of a parallel collection operation.

  25. trait Tasks extends AnyRef

    A trait that declares task execution capabilities used by parallel collections.

  26. trait TraversableOps[T] extends AnyRef

  27. trait AdaptiveWorkStealingThreadPoolTasks extends ThreadPoolTasks with AdaptiveWorkStealingTasks

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use AdaptiveWorkStealingForkJoinTasks instead.

  28. final case class CompositeThrowable(throwables: Set[Throwable]) extends Exception with Product with Serializable

    Composite throwable - thrown when multiple exceptions are thrown at the same time.

  29. class ThreadPoolTaskSupport extends TaskSupport with AdaptiveWorkStealingThreadPoolTasks

    A task support that uses a thread pool executor to schedule tasks.

  30. trait ThreadPoolTasks extends Tasks

    An implementation of tasks objects based on the Java thread pooling API.

  31. trait ThrowableOps extends AnyRef

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) This trait will be removed.

Value Members

  1. val CHECK_RATE: Int

  2. object ForkJoinTasks

  3. object FutureThreadPoolTasks

  4. val MIN_FOR_COPY: Int

  5. object ParIterable extends ParFactory[ParIterable]

    This object provides a set of operations to create ParIterable values.

  6. object ParMap extends ParMapFactory[ParMap]

  7. object ParSeq extends ParFactory[ParSeq]

  8. object ParSet extends ParSetFactory[ParSet]

  9. val SQRT2: Double

  10. object Splitter

  11. val availableProcessors: Int

  12. val defaultTaskSupport: TaskSupport

  13. implicit def factory2ops[From, Elem, To](bf: CanBuildFrom[From, Elem, To]): FactoryOps[From, Elem, To]

  14. package immutable

  15. package mutable

  16. def setTaskSupport[Coll](c: Coll, t: TaskSupport): Coll

  17. def thresholdFromSize(sz: Int, parallelismLevel: Int): Int

    Computes threshold from the size of the collection and the parallelism level.

  18. implicit def throwable2ops(self: Throwable): ThrowableOps

  19. implicit def traversable2ops[T](t: GenTraversableOnce[T]): TraversableOps[T]

Deprecated Value Members

  1. object ThreadPoolTasks

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use ForkJoinTasks instead.

Inherited from AnyRef

Inherited from Any

Ungrouped