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

com.sksamuel.elastic4s.HitReader.scala Maven / Gradle / Ivy

The newest version!
package com.sksamuel.elastic4s

import scala.util.Try

trait HitReader[T] {
  def read(hit: Hit): Try[T]
}

trait AggReader[T] {
  def read(json: String): Try[T]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy