Interface Serializer<V>

All Superinterfaces:
Serializable
All Known Implementing Classes:
CommitMetaSerializer

public interface Serializer<V> extends Serializable
Used to serialize & deserialize the values in the store. Provided to an implementation of VersionStore on construction.
  • Method Summary

    Modifier and Type
    Method
    Description
    fromBytes(org.projectnessie.nessie.relocated.protobuf.ByteString bytes)
     
    org.projectnessie.nessie.relocated.protobuf.ByteString
    toBytes(V value)
     
  • Method Details

    • toBytes

      org.projectnessie.nessie.relocated.protobuf.ByteString toBytes(V value)
    • fromBytes

      V fromBytes(org.projectnessie.nessie.relocated.protobuf.ByteString bytes)