Packages

  • package root

    This is the documentation for the Scala standard library.

    This is the documentation for the Scala standard library.

    Package structure

    The scala package contains core types like Int, Float, Array or Option which are accessible in all Scala compilation units without explicit qualification or imports.

    Notable packages include:

    Other packages exist. See the complete list on the right.

    Additional parts of the standard library are shipped as separate libraries. These include:

    • scala.reflect - Scala's reflection API (scala-reflect.jar)
    • scala.xml - XML parsing, manipulation, and serialization (scala-xml.jar)
    • scala.swing - A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)
    • scala.util.parsing - Parser combinators, including an example implementation of a JSON parser (scala-parser-combinators.jar)

    Automatic imports

    Identifiers in the scala package and the scala.Predef object are always in scope by default.

    Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example, List is an alias for scala.collection.immutable.List.

    Other aliases refer to classes provided by the underlying platform. For example, on the JVM, String is an alias for java.lang.String.

    Definition Classes
    root
  • package scala

    Core Scala types.

    Core Scala types. They are always available without an explicit import.

    Definition Classes
    root
  • package concurrent

    This package object contains primitives for concurrent and parallel programming.

    This package object contains primitives for concurrent and parallel programming.

    Guide

    A more detailed guide to Futures and Promises, including discussion and examples can be found at http://docs.scala-lang.org/overviews/core/futures.html.

    Common Imports

    When working with Futures, you will often find that importing the whole concurrent package is convenient, furthermore you are likely to need an implicit ExecutionContext in scope for many operations involving Futures and Promises:

    import scala.concurrent._
    import ExecutionContext.Implicits.global

    Specifying Durations

    Operations often require a duration to be specified. A duration DSL is available to make defining these easier:

    import scala.concurrent.duration._
    val d: Duration = 10.seconds

    Using Futures For Non-blocking Computation

    Basic use of futures is easy with the factory method on Future, which executes a provided function asynchronously, handing you back a future result of that function without blocking the current thread. In order to create the Future you will need either an implicit or explicit ExecutionContext to be provided:

    import scala.concurrent._
    import ExecutionContext.Implicits.global  // implicit execution context
    
    val firstZebra: Future[Int] = Future {
      val source = scala.io.Source.fromFile("/etc/dictionaries-common/words")
      source.toSeq.indexOfSlice("zebra")
    }

    Avoid Blocking

    Although blocking is possible in order to await results (with a mandatory timeout duration):

    import scala.concurrent.duration._
    Await.result(firstZebra, 10.seconds)

    and although this is sometimes necessary to do, in particular for testing purposes, blocking in general is discouraged when working with Futures and concurrency in order to avoid potential deadlocks and improve performance. Instead, use callbacks or combinators to remain in the future domain:

    val animalRange: Future[Int] = for {
      aardvark <- firstAardvark
      zebra <- firstZebra
    } yield zebra - aardvark
    
    animalRange.onSuccess {
      case x if x > 500000 => println("It's a long way from Aardvark to Zebra")
    }
    Definition Classes
    scala
  • package duration
    Definition Classes
    concurrent
  • package forkjoin
    Definition Classes
    concurrent
  • ForkJoinPool
  • ForkJoinTask
  • ThreadLocalRandom

package forkjoin

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. forkjoin
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ForkJoinPool = java.util.concurrent.ForkJoinPool
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ForkJoinPool directly, instead of this alias

  2. type ForkJoinTask[T] = java.util.concurrent.ForkJoinTask[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ForkJoinTask directly, instead of this alias

  3. type ForkJoinWorkerThread = java.util.concurrent.ForkJoinWorkerThread
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ForkJoinWorkerThread directly, instead of this alias

  4. type LinkedTransferQueue[T] = java.util.concurrent.LinkedTransferQueue[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.LinkedTransferQueue directly, instead of this alias

  5. type RecursiveAction = java.util.concurrent.RecursiveAction
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.RecursiveAction directly, instead of this alias

  6. type RecursiveTask[T] = java.util.concurrent.RecursiveTask[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.RecursiveTask directly, instead of this alias

  7. type ThreadLocalRandom = java.util.concurrent.ThreadLocalRandom
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ThreadLocalRandom directly, instead of this alias

Deprecated Value Members

  1. object ForkJoinPool
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ForkJoinPool directly, instead of this alias

  2. object ForkJoinTask extends Serializable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ForkJoinTask directly, instead of this alias

  3. object ThreadLocalRandom extends Serializable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use java.util.concurrent.ThreadLocalRandom directly, instead of this alias

Inherited from AnyRef

Inherited from Any

Ungrouped