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

com.github.chengpohi.api.dsl.IndexerDSL.scala Maven / Gradle / Ivy

The newest version!
package com.github.chengpohi.api.dsl

import org.elasticsearch.action.index.IndexRequestBuilder

/**
  * elasticdsl
  * Created by chengpohi on 6/30/16.
  */
trait IndexerDSL extends DSLDefinition{
  case object index {
    def into(indexPath: IndexPath): IndexRequestDefinition = {
      val indexRequestBuilder: IndexRequestBuilder = client.prepareIndex(indexPath.indexName, indexPath.indexType)
      IndexRequestDefinition(indexRequestBuilder)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy