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

com.sksamuel.elastic4s.source.Source.scala Maven / Gradle / Ivy

There is a newer version: 6.0.0-rc1
Show newest version
package com.sksamuel.elastic4s.source

/** @author Stephen Samuel */
trait DocumentSource {
  def json: String
}

/** An instance of DocumentSource that just provides json as is
  */
case class JsonDocumentSource(j: String) extends DocumentSource {
  override def json = j
}

trait DocumentMap {
  def map: Map[String, Any]
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy