object JavaSerializer
- Source
- Serializer.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JavaSerializer
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final class CurrentSystem extends DynamicVariable[ExtendedActorSystem]
Value Members
-
val
currentSystem: CurrentSystem
This holds a reference to the current ActorSystem (the surrounding context) during serialization and deserialization.
This holds a reference to the current ActorSystem (the surrounding context) during serialization and deserialization.
If you are using Serializers yourself, outside of SerializationExtension, you'll need to surround the serialization/deserialization with:
currentSystem.withValue(system) { ...code... }
or
currentSystem.withValue(system, callable)