Package

akka.persistence.jdbc

serialization

Permalink

package serialization

Visibility
  1. Public
  2. All

Type Members

  1. class AkkaSerializationProxy extends SerializationProxy

    Permalink
  2. class Base64Serializer extends BaseSerializer

    Permalink

    Encodes/decodes a PersistentRepr

  3. final case class NotSerialized(persistenceId: String, sequenceNr: Long, persistentRepr: PersistentRepr, tags: Option[String], created: Long = Platform.currentTime) extends SerializationResult with Product with Serializable

    Permalink
  4. class SerializationFacade extends AnyRef

    Permalink
  5. trait SerializationProxy extends AnyRef

    Permalink
  6. sealed trait SerializationResult extends AnyRef

    Permalink
  7. final case class Serialized(persistenceId: String, sequenceNr: Long, serialized: Array[Byte], tags: Option[String] = None, created: Long = Platform.currentTime) extends SerializationResult with Product with Serializable

    Permalink

Value Members

  1. object AkkaSerializationProxy

    Permalink
  2. object Base64Serializer

    Permalink
  3. object SerializationFacade

    Permalink

    We need to preserve the order / size of this sequence We must NOT catch serialization exceptions here because rejections will cause holes in the sequence number series and we use the sequence numbers to detect missing (delayed) events in the eventByTag query

    We need to preserve the order / size of this sequence We must NOT catch serialization exceptions here because rejections will cause holes in the sequence number series and we use the sequence numbers to detect missing (delayed) events in the eventByTag query

    Returns the serialized PersistentRepr, all fields will be serialized using akka serialization which means that *all* fields of the PersistentRepr including the payload. Note that when there is no serializer configured for the type of the payload, the default Java Serializer will be used, which may cause problems in the future,

    see: http://doc.akka.io/docs/akka/2.4.1/scala/persistence-schema-evolution.html

Ungrouped