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(io.vertx.core.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 rx.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(java.util.List topicNames, io.vertx.core.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(java.util.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 rx.Single> rxDescribeTopics(java.util.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(java.util.List topics, io.vertx.core.Handler> completionHandler) { 
    delegate.createTopics(topics, completionHandler);
  }
  /**
   * Creates a batch of new Kafka topics
   * @param topics topics to create
   */
  public void createTopics(java.util.List topics) {
    createTopics(topics, ar -> { });
  }
    /**
   * Creates a batch of new Kafka topics
   * @param topics topics to create
   * @return 
   */
  public rx.Single rxCreateTopics(java.util.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(java.util.List topicNames, io.vertx.core.Handler> completionHandler) { 
    delegate.deleteTopics(topicNames, completionHandler);
  }
  /**
   * Deletes a batch of Kafka topics
   * @param topicNames the names of the topics to delete
   */
  public void deleteTopics(java.util.List topicNames) {
    deleteTopics(topicNames, ar -> { });
  }
    /**
   * Deletes a batch of Kafka topics
   * @param topicNames the names of the topics to delete
   * @return 
   */
  public rx.Single rxDeleteTopics(java.util.List topicNames) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      deleteTopics(topicNames, fut);
    }));
  }
  /**
   * Creates a batch of new partitions in the Kafka topic
   * @param partitions partitions to create
   * @param completionHandler handler called on operation completed
   */
  public void createPartitions(java.util.Map partitions, io.vertx.core.Handler> completionHandler) { 
    delegate.createPartitions(partitions, completionHandler);
  }
  /**
   * Creates a batch of new partitions in the Kafka topic
   * @param partitions partitions to create
   */
  public void createPartitions(java.util.Map partitions) {
    createPartitions(partitions, ar -> { });
  }
    /**
   * Creates a batch of new partitions in the Kafka topic
   * @param partitions partitions to create
   * @return 
   */
  public rx.Single rxCreatePartitions(java.util.Map partitions) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      createPartitions(partitions, 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(io.vertx.core.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 rx.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(java.util.List groupIds, io.vertx.core.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(java.util.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 rx.Single> rxDescribeConsumerGroups(java.util.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(io.vertx.core.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 rx.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(java.util.List groupIds, io.vertx.core.Handler> completionHandler) { 
    delegate.deleteConsumerGroups(groupIds, completionHandler);
  }
  /**
   * Delete consumer groups from the cluster.
   * @param groupIds the ids of the groups to delete
   */
  public void deleteConsumerGroups(java.util.List groupIds) {
    deleteConsumerGroups(groupIds, ar -> { });
  }
    /**
   * Delete consumer groups from the cluster.
   * @param groupIds the ids of the groups to delete
   * @return 
   */
  public rx.Single rxDeleteConsumerGroups(java.util.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 deleted
   * @param partitions The set of partitions in the consumer group whose offsets will be deleted
   * @param completionHandler 
   */
  public void deleteConsumerGroupOffsets(java.lang.String groupId, java.util.Set partitions, io.vertx.core.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 deleted
   * @param partitions The set of partitions in the consumer group whose offsets will be deleted
   */
  public void deleteConsumerGroupOffsets(java.lang.String groupId, java.util.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 deleted
   * @param partitions The set of partitions in the consumer group whose offsets will be deleted
   * @return 
   */
  public rx.Single rxDeleteConsumerGroupOffsets(java.lang.String groupId, java.util.Set partitions) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      deleteConsumerGroupOffsets(groupId, partitions, fut);
    }));
  }
  /**
   * Close the admin client
   * @param handler a Handler completed with the operation result
   */
  public void close(io.vertx.core.Handler> handler) { 
    delegate.close(handler);
  }
  /**
   * Close the admin client
   */
  public void close() {
    close(ar -> { });
  }
    /**
   * Close the admin client
   * @return 
   */
  public rx.Single rxClose() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      close(fut);
    }));
  }
  /**
   * Close the admin client
   * @param timeout timeout to wait for closing
   * @param handler a Handler completed with the operation result
   */
  public void close(long timeout, io.vertx.core.Handler> handler) { 
    delegate.close(timeout, handler);
  }
  /**
   * Close the admin client
   * @param timeout timeout to wait for closing
   */
  public void close(long timeout) {
    close(timeout, ar -> { });
  }
    /**
   * Close the admin client
   * @param timeout timeout to wait for closing
   * @return 
   */
  public rx.Single rxClose(long timeout) { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      close(timeout, fut);
    }));
  }
  public static KafkaAdminClient newInstance(io.vertx.kafka.admin.KafkaAdminClient arg) {
    return arg != null ? new KafkaAdminClient(arg) : null;
  }
}
                                                   © 2015 - 2025 Weber Informatics LLC | Privacy Policy