Packages

final class CurrentSystem extends DynamicVariable[ExtendedActorSystem]

Source
Serializer.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CurrentSystem
  2. DynamicVariable
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CurrentSystem()

Value Members

  1. def toString(): String
    Definition Classes
    DynamicVariable → AnyRef → Any
  2. def value: ExtendedActorSystem
    Definition Classes
    DynamicVariable
  3. def value_=(newval: ExtendedActorSystem): Unit
    Definition Classes
    DynamicVariable
  4. def withValue[S](value: ExtendedActorSystem, callable: Callable[S]): S

    Java API: invoke the callable with the current system being set to the given value for this thread.

    Java API: invoke the callable with the current system being set to the given value for this thread.

    value

    - the current value under the call to callable.call()

    callable

    - the operation to be performed

    returns

    the result of callable.call()

  5. def withValue[S](newval: ExtendedActorSystem)(thunk: => S): S
    Definition Classes
    DynamicVariable