akka.persistence.serialization
Configuration namespace of serialization identifiers in the reference.conf
.
Configuration namespace of serialization identifiers in the reference.conf
.
Each serializer implementation must have an entry in the following format:
akka.actor.serialization-identifiers."FQCN" = ID
where FQCN
is fully qualified class name of the serializer implementation
and ID
is globally unique serializer identifier number.
Deserializes a Snapshot.
Deserializes a Snapshot. Delegates deserialization of snapshot data
to a matching
akka.serialization.Serializer
.
Java API: deserialize with type hint
Java API: deserialize with type hint
Java API: deserialize without type hint
Java API: deserialize without type hint
Globally unique serialization identifier configured in the reference.conf
.
Globally unique serialization identifier configured in the reference.conf
.
See Serializer#identifier().
Returns whether this serializer needs a manifest in the fromBinary method
Returns whether this serializer needs a manifest in the fromBinary method
Actor system which is required by most serializer implementations.
Actor system which is required by most serializer implementations.
Serializes a Snapshot.
Serializes a Snapshot. Delegates serialization of snapshot data
to a matching
akka.serialization.Serializer
.
Snapshot serializer.