io.vertx.rxjava.kafka.admin.KafkaAdminClient Maven / Gradle / Ivy
/*
* 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.vertx.rxjava.kafka.admin;
import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
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;
/**
* Vert.x Kafka Admin client implementation
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.kafka.admin.KafkaAdminClient original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.kafka.admin.KafkaAdminClient.class)
public class KafkaAdminClient {
@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;
KafkaAdminClient that = (KafkaAdminClient) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new KafkaAdminClient((io.vertx.kafka.admin.KafkaAdminClient) obj),
KafkaAdminClient::getDelegate
);
private final io.vertx.kafka.admin.KafkaAdminClient delegate;
public KafkaAdminClient(io.vertx.kafka.admin.KafkaAdminClient delegate) {
this.delegate = delegate;
}
public KafkaAdminClient(Object delegate) {
this.delegate = (io.vertx.kafka.admin.KafkaAdminClient)delegate;
}
public io.vertx.kafka.admin.KafkaAdminClient getDelegate() {
return delegate;
}
/**
* Create a new KafkaAdminClient instance
* @param vertx Vert.x instance to use
* @param config Kafka admin client configuration
* @return an instance of the KafkaAdminClient
*/
public static io.vertx.rxjava.kafka.admin.KafkaAdminClient create(io.vertx.rxjava.core.Vertx vertx, java.util.Map config) {
io.vertx.rxjava.kafka.admin.KafkaAdminClient ret = io.vertx.rxjava.kafka.admin.KafkaAdminClient.newInstance((io.vertx.kafka.admin.KafkaAdminClient)io.vertx.kafka.admin.KafkaAdminClient.create(vertx.getDelegate(), config));
return ret;
}
/**
* List the topics available in the cluster with the default options.
* @param completionHandler handler called on operation completed with the topics set
*/
public void listTopics(Handler>> completionHandler) {
delegate.listTopics(completionHandler);
}
/**
* List the topics available in the cluster with the default options.
*/
public void listTopics() {
listTopics(ar -> { });
}
/**
* List the topics available in the cluster with the default options.
* @return
*/
public Single> rxListTopics() {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
listTopics(fut);
}));
}
/**
* Describe some topics in the cluster, with the default options.
* @param topicNames the names of the topics to describe
* @param completionHandler handler called on operation completed with the topics descriptions
*/
public void describeTopics(List topicNames, Handler>> completionHandler) {
delegate.describeTopics(topicNames, completionHandler);
}
/**
* Describe some topics in the cluster, with the default options.
* @param topicNames the names of the topics to describe
*/
public void describeTopics(List topicNames) {
describeTopics(topicNames, ar -> { });
}
/**
* Describe some topics in the cluster, with the default options.
* @param topicNames the names of the topics to describe
* @return
*/
public Single> rxDescribeTopics(List topicNames) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
describeTopics(topicNames, fut);
}));
}
/**
* Creates a batch of new Kafka topics
* @param topics topics to create
* @param completionHandler handler called on operation completed
*/
public void createTopics(List topics, Handler> completionHandler) {
delegate.createTopics(topics, completionHandler);
}
/**
* Creates a batch of new Kafka topics
* @param topics topics to create
*/
public void createTopics(List topics) {
createTopics(topics, ar -> { });
}
/**
* Creates a batch of new Kafka topics
* @param topics topics to create
* @return
*/
public Single rxCreateTopics(List topics) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
createTopics(topics, fut);
}));
}
/**
* Deletes a batch of Kafka topics
* @param topicNames the names of the topics to delete
* @param completionHandler handler called on operation completed
*/
public void deleteTopics(List topicNames, Handler> completionHandler) {
delegate.deleteTopics(topicNames, completionHandler);
}
/**
* Deletes a batch of Kafka topics
* @param topicNames the names of the topics to delete
*/
public void deleteTopics(List topicNames) {
deleteTopics(topicNames, ar -> { });
}
/**
* Deletes a batch of Kafka topics
* @param topicNames the names of the topics to delete
* @return
*/
public Single rxDeleteTopics(List topicNames) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
deleteTopics(topicNames, fut);
}));
}
/**
* Get the the consumer groups available in the cluster with the default options
* @param completionHandler handler called on operation completed with the consumer groups ids
*/
public void listConsumerGroups(Handler>> completionHandler) {
delegate.listConsumerGroups(completionHandler);
}
/**
* Get the the consumer groups available in the cluster with the default options
*/
public void listConsumerGroups() {
listConsumerGroups(ar -> { });
}
/**
* Get the the consumer groups available in the cluster with the default options
* @return
*/
public Single> rxListConsumerGroups() {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
listConsumerGroups(fut);
}));
}
/**
* Describe some group ids in the cluster, with the default options
* @param groupIds the ids of the groups to describe
* @param completionHandler handler called on operation completed with the consumer groups descriptions
*/
public void describeConsumerGroups(List groupIds, Handler>> completionHandler) {
delegate.describeConsumerGroups(groupIds, completionHandler);
}
/**
* Describe some group ids in the cluster, with the default options
* @param groupIds the ids of the groups to describe
*/
public void describeConsumerGroups(List groupIds) {
describeConsumerGroups(groupIds, ar -> { });
}
/**
* Describe some group ids in the cluster, with the default options
* @param groupIds the ids of the groups to describe
* @return
*/
public Single> rxDescribeConsumerGroups(List groupIds) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
describeConsumerGroups(groupIds, fut);
}));
}
/**
* Describe the nodes in the cluster with the default options
* @param completionHandler handler called on operation completed with the cluster description
*/
public void describeCluster(Handler> completionHandler) {
delegate.describeCluster(completionHandler);
}
/**
* Describe the nodes in the cluster with the default options
*/
public void describeCluster() {
describeCluster(ar -> { });
}
/**
* Describe the nodes in the cluster with the default options
* @return
*/
public Single rxDescribeCluster() {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
describeCluster(fut);
}));
}
/**
* Delete consumer groups from the cluster.
* @param groupIds the ids of the groups to delete
* @param completionHandler handler called on operation completed
*/
public void deleteConsumerGroups(List groupIds, Handler> completionHandler) {
delegate.deleteConsumerGroups(groupIds, completionHandler);
}
/**
* Delete consumer groups from the cluster.
* @param groupIds the ids of the groups to delete
*/
public void deleteConsumerGroups(List groupIds) {
deleteConsumerGroups(groupIds, ar -> { });
}
/**
* Delete consumer groups from the cluster.
* @param groupIds the ids of the groups to delete
* @return
*/
public Single rxDeleteConsumerGroups(List groupIds) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
deleteConsumerGroups(groupIds, fut);
}));
}
/**
* Delete committed offsets for a set of partitions in a consumer group. This will
* succeed at the partition level only if the group is not actively subscribed
* to the corresponding topic.
* @param groupId The group id of the group whose offsets will be listed
* @param partitions The set of partitions in the consumer group whose offsets will be deleted
* @param completionHandler
*/
public void deleteConsumerGroupOffsets(String groupId, Set partitions, Handler> completionHandler) {
delegate.deleteConsumerGroupOffsets(groupId, partitions, completionHandler);
}
/**
* Delete committed offsets for a set of partitions in a consumer group. This will
* succeed at the partition level only if the group is not actively subscribed
* to the corresponding topic.
* @param groupId The group id of the group whose offsets will be listed
* @param partitions The set of partitions in the consumer group whose offsets will be deleted
*/
public void deleteConsumerGroupOffsets(String groupId, Set partitions) {
deleteConsumerGroupOffsets(groupId, partitions, ar -> { });
}
/**
* Delete committed offsets for a set of partitions in a consumer group. This will
* succeed at the partition level only if the group is not actively subscribed
* to the corresponding topic.
* @param groupId The group id of the group whose offsets will be listed
* @param partitions The set of partitions in the consumer group whose offsets will be deleted
* @return
*/
public Single rxDeleteConsumerGroupOffsets(String groupId, Set partitions) {
return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
deleteConsumerGroupOffsets(groupId, partitions, fut);
}));
}
/**
* Close the admin client
* @return a Future
completed with the operation result
*/
public io.vertx.rxjava.core.Future close() {
io.vertx.rxjava.core.Future ret = io.vertx.rxjava.core.Future.newInstance((io.vertx.core.Future)delegate.close(), TypeArg.unknown());
return ret;
}
/**
* Close the admin client
* @param timeout timeout to wait for closing
* @return a Future
completed with the operation result
*/
public io.vertx.rxjava.core.Future close(long timeout) {
io.vertx.rxjava.core.Future ret = io.vertx.rxjava.core.Future.newInstance((io.vertx.core.Future)delegate.close(timeout), TypeArg.unknown());
return ret;
}
public static KafkaAdminClient newInstance(io.vertx.kafka.admin.KafkaAdminClient arg) {
return arg != null ? new KafkaAdminClient(arg) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy