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

io.reactiverse.elasticsearch.client.GraphClientImpl 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 org.elasticsearch.client.*;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.client.graph.GraphExploreRequest;
import org.elasticsearch.client.graph.GraphExploreResponse;
import java.io.IOException;
import static java.util.Collections.emptySet;

class GraphClientImpl implements GraphClient {

    private final Vertx vertx;

    private final org.elasticsearch.client.GraphClient delegate;

    GraphClientImpl(Vertx vertx, org.elasticsearch.client.GraphClient delegate) {
        this.vertx = vertx;
        this.delegate = delegate;
    }

    @Override()
    public void exploreAsync(GraphExploreRequest graphExploreRequest, RequestOptions options, Handler> handler) {
        Context context = vertx.getOrCreateContext();
        delegate.exploreAsync(graphExploreRequest, options, new ActionListener() {

            @Override
            public void onResponse(GraphExploreResponse value) {
                context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
            }

            @Override
            public void onFailure(Exception e) {
                context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
            }
        });
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy