Packages

c

akka.persistence.serialization

SnapshotSerializer

class SnapshotSerializer extends BaseSerializer

Snapshot serializer.

Source
SnapshotSerializer.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SnapshotSerializer
  2. BaseSerializer
  3. Serializer
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SnapshotSerializer(system: ExtendedActorSystem)

Value Members

  1. final val SerializationIdentifiers: String("akka.actor.serialization-identifiers")

    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.

    Definition Classes
    BaseSerializer
  2. def fromBinary(bytes: Array[Byte], manifest: Option[Class[_]]): AnyRef

    Deserializes a Snapshot.

    Deserializes a Snapshot. Delegates deserialization of snapshot data to a matching akka.serialization.Serializer.

    Definition Classes
    SnapshotSerializerSerializer
  3. final def fromBinary(bytes: Array[Byte], clazz: Class[_]): AnyRef

    Java API: deserialize with type hint

    Java API: deserialize with type hint

    Definition Classes
    Serializer
    Annotations
    @throws( classOf[NotSerializableException] )
  4. final def fromBinary(bytes: Array[Byte]): AnyRef

    Java API: deserialize without type hint

    Java API: deserialize without type hint

    Definition Classes
    Serializer
  5. val identifier: Int

    Globally unique serialization identifier configured in the reference.conf.

    Globally unique serialization identifier configured in the reference.conf.

    See Serializer#identifier.

    Definition Classes
    BaseSerializerSerializer
  6. val includeManifest: Boolean

    Returns whether this serializer needs a manifest in the fromBinary method

    Returns whether this serializer needs a manifest in the fromBinary method

    Definition Classes
    SnapshotSerializerSerializer
  7. val system: ExtendedActorSystem

    Actor system which is required by most serializer implementations.

    Actor system which is required by most serializer implementations.

    Definition Classes
    SnapshotSerializerBaseSerializer
  8. def toBinary(o: AnyRef): Array[Byte]

    Serializes a Snapshot.

    Serializes a Snapshot. Delegates serialization of snapshot data to a matching akka.serialization.Serializer.

    Definition Classes
    SnapshotSerializerSerializer