final class CurrentSystem extends DynamicVariable[ExtendedActorSystem]
- Source
- Serializer.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- CurrentSystem
- DynamicVariable
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CurrentSystem()
Value Members
- def toString(): String
- Definition Classes
- DynamicVariable → AnyRef → Any
- def value: ExtendedActorSystem
- Definition Classes
- DynamicVariable
- def value_=(newval: ExtendedActorSystem): Unit
- Definition Classes
- DynamicVariable
- 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()
- def withValue[S](newval: ExtendedActorSystem)(thunk: => S): S
- Definition Classes
- DynamicVariable