io.reactiverse.elasticsearch.client.IngestClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-client Show documentation
Show all versions of elasticsearch-client Show documentation
Reactiverse Elasticsearch client
/*
[NOTE] This is an automatically generated file.
Do not make changes to this file but to the shim code generator.
*/
package io.reactiverse.elasticsearch.client;
import io.vertx.core.*;
import io.vertx.codegen.annotations.*;
import org.elasticsearch.client.*;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.action.ingest.DeletePipelineRequest;
import org.elasticsearch.action.ingest.GetPipelineRequest;
import org.elasticsearch.action.ingest.GetPipelineResponse;
import org.elasticsearch.action.ingest.PutPipelineRequest;
import org.elasticsearch.action.ingest.SimulatePipelineRequest;
import org.elasticsearch.action.ingest.SimulatePipelineResponse;
import org.elasticsearch.action.support.master.AcknowledgedResponse;
import java.io.IOException;
import java.util.Collections;
import static java.util.Collections.emptySet;
@VertxGen()
public interface IngestClient {
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void putPipelineAsync(PutPipelineRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void getPipelineAsync(GetPipelineRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void deletePipelineAsync(DeletePipelineRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void simulateAsync(SimulatePipelineRequest request, RequestOptions options, Handler> handler);
}