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

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

There is a newer version: 0.9.0-ec7.10.1
Show 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.ccr.CcrStatsRequest;
import org.elasticsearch.client.ccr.CcrStatsResponse;
import org.elasticsearch.client.ccr.DeleteAutoFollowPatternRequest;
import org.elasticsearch.client.ccr.FollowInfoRequest;
import org.elasticsearch.client.ccr.FollowInfoResponse;
import org.elasticsearch.client.ccr.FollowStatsRequest;
import org.elasticsearch.client.ccr.FollowStatsResponse;
import org.elasticsearch.client.ccr.ForgetFollowerRequest;
import org.elasticsearch.client.ccr.GetAutoFollowPatternRequest;
import org.elasticsearch.client.ccr.GetAutoFollowPatternResponse;
import org.elasticsearch.client.ccr.PauseAutoFollowPatternRequest;
import org.elasticsearch.client.ccr.PauseFollowRequest;
import org.elasticsearch.client.ccr.PutAutoFollowPatternRequest;
import org.elasticsearch.client.ccr.PutFollowRequest;
import org.elasticsearch.client.ccr.PutFollowResponse;
import org.elasticsearch.client.ccr.ResumeAutoFollowPatternRequest;
import org.elasticsearch.client.ccr.ResumeFollowRequest;
import org.elasticsearch.client.ccr.UnfollowRequest;
import org.elasticsearch.client.core.AcknowledgedResponse;
import org.elasticsearch.client.core.BroadcastResponse;
import java.io.IOException;
import java.util.Collections;

@VertxGen()
public interface CcrClient {

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void putFollowAsync(PutFollowRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void pauseFollowAsync(PauseFollowRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void resumeFollowAsync(ResumeFollowRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void unfollowAsync(UnfollowRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void forgetFollowerAsync(final ForgetFollowerRequest request, final RequestOptions options, final Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void putAutoFollowPatternAsync(PutAutoFollowPatternRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void deleteAutoFollowPatternAsync(DeleteAutoFollowPatternRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void getAutoFollowPatternAsync(GetAutoFollowPatternRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void pauseAutoFollowPatternAsync(PauseAutoFollowPatternRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void resumeAutoFollowPatternAsync(ResumeAutoFollowPatternRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void getCcrStatsAsync(CcrStatsRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void getFollowStatsAsync(FollowStatsRequest request, RequestOptions options, Handler> handler);

    @GenIgnore(GenIgnore.PERMITTED_TYPE)
    public void getFollowInfoAsync(FollowInfoRequest request, RequestOptions options, Handler> handler);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy