![JAR search and dependency download from the Maven repository](/logo.png)
scalapb_argonaut.ScalapbArgonautPlatform.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalapb-argonaut_2.13 Show documentation
Show all versions of scalapb-argonaut_2.13 Show documentation
Json/Protobuf convertors for ScalaPB
The newest version!
package scalapb_argonaut
import argonaut.Json
import com.google.protobuf.timestamp.Timestamp
import scalapb_json.JsonFormatException
import scalapb_json.Timestamps
private[scalapb_argonaut] object ScalapbArgonautPlatform {
def registerPlatformWriters(registry: FormatRegistry): FormatRegistry = {
registry.registerWriter(
(t: Timestamp) => Json.jString(Timestamps.writeTimestamp(t)), {
_.string match {
case Some(str) =>
Timestamps.parseTimestamp(str)
case _ =>
throw new JsonFormatException("Expected a string.")
}
}
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy