io.github.sinri.keel.elasticsearch.ElasticSearchKit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.elasticsearch;
import io.github.sinri.keel.elasticsearch.index.ESIndexMixin;
import javax.annotation.Nonnull;
/**
* @see ES Restful API 8.9
* Here only JSON over HTTP(s) supported.
* @since 3.0.7
*/
public class ElasticSearchKit implements ESApiMixin, ESIndexMixin {
private final ElasticSearchConfig esConfig;
/**
* @since 3.2.0 replace KeelEventLogger with KeelRoutineIssueRecorder.
*/
public ElasticSearchKit(@Nonnull String esKey) {
this.esConfig = new ElasticSearchConfig(esKey);
}
public ElasticSearchConfig getEsConfig() {
return esConfig;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy