Package

scala

concurrent

Permalink

package concurrent

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. concurrent
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type CancellationException = java.util.concurrent.CancellationException

    Permalink
  2. type ExecutionException = java.util.concurrent.ExecutionException

    Permalink
  3. class MDCExecutionContext extends ExecutionContextExecutor

    Permalink

    Manages execution to ensure that the given MDC context are set correctly in the current thread.

    Manages execution to ensure that the given MDC context are set correctly in the current thread. Actual execution is performed by a delegate ExecutionContext.

  4. type TimeoutException = java.util.concurrent.TimeoutException

    Permalink

Value Members

  1. object MDCExecutionContext

    Permalink

    slf4j provides a MDC Mapped Diagnostic Context based on a ThreadLocal.

    slf4j provides a MDC Mapped Diagnostic Context based on a ThreadLocal. In an asynchronous environment, the callbacks can be called in another thread, where the local thread variable does not exist anymore.

    This execution context fixes this problem: it propagates the MDC from the caller's thread to the callee's one.

  2. def blocking[T](body: ⇒ T): T

    Permalink
    Annotations
    @throws( classOf[java.lang.Exception] )

Deprecated Value Members

  1. def future[T](body: ⇒ T)(implicit executor: ExecutionContext): Future[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use Future { ... } instead.

  2. def promise[T](): Promise[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use Promise[T]() instead.

Inherited from AnyRef

Inherited from Any

Ungrouped