Package-level declarations

Types

Link copied to clipboard
class ActionCompiler(    val features: ElasticsearchFeatures,     actionMetaCompiler: ActionMetaCompiler,     actionSourceCompiler: ActionSourceCompiler) : BaseCompiler
Link copied to clipboard
Link copied to clipboard
class ActionSourceCompiler(val features: ElasticsearchFeatures, searchQueryCompiler: SearchQueryCompiler) : BaseCompiler
Link copied to clipboard
abstract class BaseCompiler(val features: ElasticsearchFeatures)
Link copied to clipboard
Link copied to clipboard
class BulkCompiler(val features: ElasticsearchFeatures, actionCompiler: ActionCompiler) : BaseCompiler
Link copied to clipboard
class CompilerSet(esVersion: Version<*>)
Link copied to clipboard
class CreateIndexCompiler(val features: ElasticsearchFeatures, val mappingCompiler: MappingCompiler) : BaseCompiler
Link copied to clipboard
open class MappingCompiler(val features: ElasticsearchFeatures, searchQueryCompiler: SearchQueryCompiler) : BaseCompiler
Link copied to clipboard
Link copied to clipboard
class PreparedBulk(    val indexName: String,     val actions: List<Action<*>>,     val refresh: Refresh? = null,     val timeout: String? = null,     val params: Params = Params())
Link copied to clipboard
class PreparedCreateIndex(    val indexName: String,     val settings: Params,     val mapping: Document? = null,     val aliases: Params = Params(),     val waitForActiveShards: Boolean? = null,     val masterTimeout: String? = null,     val timeout: String? = null)
Link copied to clipboard
class PreparedUpdateMapping(    val indexName: String,     val mapping: Document,     val allowNoIndices: Boolean?,     val ignoreUnavailable: Boolean?,     val writeIndexOnly: Boolean?,     val masterTimeout: String?,     val timeout: String?)
Link copied to clipboard
Link copied to clipboard