io.reactiverse.elasticsearch.client.TasksClient 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.admin.cluster.node.tasks.cancel.CancelTasksRequest;
import org.elasticsearch.action.admin.cluster.node.tasks.cancel.CancelTasksResponse;
import org.elasticsearch.action.admin.cluster.node.tasks.list.ListTasksRequest;
import org.elasticsearch.action.admin.cluster.node.tasks.list.ListTasksResponse;
import org.elasticsearch.client.tasks.GetTaskRequest;
import org.elasticsearch.client.tasks.GetTaskResponse;
import java.io.IOException;
import java.util.Optional;
import static java.util.Collections.emptySet;
@VertxGen()
public interface TasksClient {
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void listAsync(ListTasksRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void getAsync(GetTaskRequest request, RequestOptions options, Handler>> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void cancelAsync(CancelTasksRequest cancelTasksRequest, RequestOptions options, Handler> handler);
}