io.reactiverse.elasticsearch.client.reactivex.ClusterClient 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!
/*
* Copyright 2014 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.reactiverse.elasticsearch.client.reactivex;
import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
@RxGen(io.reactiverse.elasticsearch.client.ClusterClient.class)
public class ClusterClient {
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ClusterClient that = (ClusterClient) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new ClusterClient((io.reactiverse.elasticsearch.client.ClusterClient) obj),
ClusterClient::getDelegate
);
private final io.reactiverse.elasticsearch.client.ClusterClient delegate;
public ClusterClient(io.reactiverse.elasticsearch.client.ClusterClient delegate) {
this.delegate = delegate;
}
public ClusterClient(Object delegate) {
this.delegate = (io.reactiverse.elasticsearch.client.ClusterClient)delegate;
}
public io.reactiverse.elasticsearch.client.ClusterClient getDelegate() {
return delegate;
}
public void putSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest clusterUpdateSettingsRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.putSettingsAsync(clusterUpdateSettingsRequest, options, handler);
}
public void putSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest clusterUpdateSettingsRequest, org.elasticsearch.client.RequestOptions options) {
putSettingsAsync(clusterUpdateSettingsRequest, options, ar -> { });
}
public io.reactivex.Single rxPutSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest clusterUpdateSettingsRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
putSettingsAsync(clusterUpdateSettingsRequest, options, $handler);
});
}
public void getSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterGetSettingsRequest clusterGetSettingsRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.getSettingsAsync(clusterGetSettingsRequest, options, handler);
}
public void getSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterGetSettingsRequest clusterGetSettingsRequest, org.elasticsearch.client.RequestOptions options) {
getSettingsAsync(clusterGetSettingsRequest, options, ar -> { });
}
public io.reactivex.Single rxGetSettingsAsync(org.elasticsearch.action.admin.cluster.settings.ClusterGetSettingsRequest clusterGetSettingsRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
getSettingsAsync(clusterGetSettingsRequest, options, $handler);
});
}
public void healthAsync(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest healthRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.healthAsync(healthRequest, options, handler);
}
public void healthAsync(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest healthRequest, org.elasticsearch.client.RequestOptions options) {
healthAsync(healthRequest, options, ar -> { });
}
public io.reactivex.Single rxHealthAsync(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest healthRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
healthAsync(healthRequest, options, $handler);
});
}
public void remoteInfoAsync(org.elasticsearch.client.cluster.RemoteInfoRequest request, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.remoteInfoAsync(request, options, handler);
}
public void remoteInfoAsync(org.elasticsearch.client.cluster.RemoteInfoRequest request, org.elasticsearch.client.RequestOptions options) {
remoteInfoAsync(request, options, ar -> { });
}
public io.reactivex.Single rxRemoteInfoAsync(org.elasticsearch.client.cluster.RemoteInfoRequest request, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
remoteInfoAsync(request, options, $handler);
});
}
public void deleteComponentTemplateAsync(org.elasticsearch.client.indices.DeleteComponentTemplateRequest request, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.deleteComponentTemplateAsync(request, options, handler);
}
public void deleteComponentTemplateAsync(org.elasticsearch.client.indices.DeleteComponentTemplateRequest request, org.elasticsearch.client.RequestOptions options) {
deleteComponentTemplateAsync(request, options, ar -> { });
}
public io.reactivex.Single rxDeleteComponentTemplateAsync(org.elasticsearch.client.indices.DeleteComponentTemplateRequest request, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
deleteComponentTemplateAsync(request, options, $handler);
});
}
public void putComponentTemplateAsync(org.elasticsearch.client.indices.PutComponentTemplateRequest putComponentTemplateRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.putComponentTemplateAsync(putComponentTemplateRequest, options, handler);
}
public void putComponentTemplateAsync(org.elasticsearch.client.indices.PutComponentTemplateRequest putComponentTemplateRequest, org.elasticsearch.client.RequestOptions options) {
putComponentTemplateAsync(putComponentTemplateRequest, options, ar -> { });
}
public io.reactivex.Single rxPutComponentTemplateAsync(org.elasticsearch.client.indices.PutComponentTemplateRequest putComponentTemplateRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
putComponentTemplateAsync(putComponentTemplateRequest, options, $handler);
});
}
public void getComponentTemplateAsync(org.elasticsearch.client.indices.GetComponentTemplatesRequest getComponentTemplatesRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.getComponentTemplateAsync(getComponentTemplatesRequest, options, handler);
}
public void getComponentTemplateAsync(org.elasticsearch.client.indices.GetComponentTemplatesRequest getComponentTemplatesRequest, org.elasticsearch.client.RequestOptions options) {
getComponentTemplateAsync(getComponentTemplatesRequest, options, ar -> { });
}
public io.reactivex.Single rxGetComponentTemplateAsync(org.elasticsearch.client.indices.GetComponentTemplatesRequest getComponentTemplatesRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
getComponentTemplateAsync(getComponentTemplatesRequest, options, $handler);
});
}
public void existsComponentTemplateAsync(org.elasticsearch.client.indices.ComponentTemplatesExistRequest componentTemplatesRequest, org.elasticsearch.client.RequestOptions options, io.vertx.core.Handler> handler) {
delegate.existsComponentTemplateAsync(componentTemplatesRequest, options, handler);
}
public void existsComponentTemplateAsync(org.elasticsearch.client.indices.ComponentTemplatesExistRequest componentTemplatesRequest, org.elasticsearch.client.RequestOptions options) {
existsComponentTemplateAsync(componentTemplatesRequest, options, ar -> { });
}
public io.reactivex.Single rxExistsComponentTemplateAsync(org.elasticsearch.client.indices.ComponentTemplatesExistRequest componentTemplatesRequest, org.elasticsearch.client.RequestOptions options) {
return AsyncResultSingle.toSingle($handler -> {
existsComponentTemplateAsync(componentTemplatesRequest, options, $handler);
});
}
public static ClusterClient newInstance(io.reactiverse.elasticsearch.client.ClusterClient arg) {
return arg != null ? new ClusterClient(arg) : null;
}
}