All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avsystem.commons.mongo.DocumentCodec.scala Maven / Gradle / Ivy

There is a newer version: 2.22.0
Show newest version
package com.avsystem.commons
package mongo

import org.bson.BsonDocument

/**
  * @author MKej
  */
trait DocumentCodec[T] {
  def toDocument(t: T): Doc
  def fromDocument(doc: Doc): T

  lazy val bsonCodec: BsonCodec[T, BsonDocument] = BsonCodec.doc.map(fromDocument, toDocument)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy