All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.reactiverse.elasticsearch.client.RollupClient Maven / Gradle / Ivy

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.action.search.SearchRequest;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.core.AcknowledgedResponse;
import org.elasticsearch.client.rollup.DeleteRollupJobRequest;
import org.elasticsearch.client.rollup.GetRollupIndexCapsRequest;
import org.elasticsearch.client.rollup.GetRollupIndexCapsResponse;
import org.elasticsearch.client.rollup.GetRollupJobRequest;
import org.elasticsearch.client.rollup.GetRollupJobResponse;
import org.elasticsearch.client.rollup.GetRollupCapsRequest;
import org.elasticsearch.client.rollup.GetRollupCapsResponse;
import org.elasticsearch.client.rollup.PutRollupJobRequest;
import org.elasticsearch.client.rollup.StartRollupJobRequest;
import org.elasticsearch.client.rollup.StartRollupJobResponse;
import org.elasticsearch.client.rollup.StopRollupJobRequest;
import org.elasticsearch.client.rollup.StopRollupJobResponse;
import java.io.IOException;
import java.util.Collections;

@VertxGen()
public interface RollupClient {

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void putRollupJobAsync(PutRollupJobRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void startRollupJobAsync(StartRollupJobRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void stopRollupJobAsync(StopRollupJobRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void deleteRollupJobAsync(DeleteRollupJobRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void getRollupJobAsync(GetRollupJobRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void searchAsync(SearchRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void getRollupCapabilitiesAsync(GetRollupCapsRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    void getRollupIndexCapabilitiesAsync(GetRollupIndexCapsRequest request, RequestOptions options, Handler> handler);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy