com.github.j5ik2o.akka.persistence.dynamodb.serialization.SnapshotSerializer.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-persistence-dynamodb-snapshot_2.12 Show documentation
Show all versions of akka-persistence-dynamodb-snapshot_2.12 Show documentation
akka-persistence-dynamodb-snapshot
package com.github.j5ik2o.akka.persistence.dynamodb.serialization
import akka.persistence.SnapshotMetadata
trait SnapshotSerializer[T] {
def serialize(metadata: SnapshotMetadata, snapshot: Any): Either[Throwable, T]
def deserialize(t: T): Either[Throwable, (SnapshotMetadata, Any)]
}