io.reactiverse.elasticsearch.client.AsyncSearchClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-client-rxjava2 Show documentation
Show all versions of elasticsearch-client-rxjava2 Show documentation
Reactiverse Elasticsearch client :: RxJava2 bindings
The newest version!
/*
[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.client.asyncsearch.AsyncSearchResponse;
import org.elasticsearch.client.asyncsearch.DeleteAsyncSearchRequest;
import org.elasticsearch.client.asyncsearch.GetAsyncSearchRequest;
import org.elasticsearch.client.asyncsearch.SubmitAsyncSearchRequest;
import org.elasticsearch.client.core.AcknowledgedResponse;
import java.io.IOException;
import static java.util.Collections.emptySet;
@VertxGen()
public interface AsyncSearchClient {
@GenIgnore(GenIgnore.PERMITTED_TYPE)
void submitAsync(SubmitAsyncSearchRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
void getAsync(GetAsyncSearchRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
void deleteAsync(DeleteAsyncSearchRequest request, RequestOptions options, Handler> handler);
}