Package

akka.persistence.inmemory

serialization

Permalink

package serialization

Visibility
  1. Public
  2. All

Type Members

  1. class AkkaSerializationProxy extends SerializationProxy

    Permalink
  2. class SerializationFacade extends AnyRef

    Permalink
  3. trait SerializationProxy extends AnyRef

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

    Permalink

Value Members

  1. object AkkaSerializationProxy

    Permalink
  2. 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