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

io.vertx.kotlin.kafka.admin.ConsumerGroupDescription.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
/*
 * Copyright 2019 Red Hat, Inc.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * The Apache License v2.0 is available at
 * http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.kotlin.kafka.admin

import io.vertx.kafka.admin.ConsumerGroupDescription
import io.vertx.kafka.admin.MemberDescription
import io.vertx.kafka.client.common.Node
import org.apache.kafka.common.ConsumerGroupState

/**
 * A function providing a DSL for building [io.vertx.kafka.admin.ConsumerGroupDescription] objects.
 *
 * A detailed description of a single consumer group in the cluster
 *
 * @param coordinator  Set the consumer group coordinator, or null if the coordinator is not known
 * @param groupId  Set the id of the consumer group
 * @param members  Set a list of the members of the consumer group
 * @param partitionAssignor  Set the consumer group partition assignor
 * @param simpleConsumerGroup  Set if consumer group is simple or not
 * @param state  Set the consumer group state, or UNKNOWN if the state is too new for us to parse
 *
 * 

* NOTE: This function has been automatically generated from the [io.vertx.kafka.admin.ConsumerGroupDescription original] using Vert.x codegen. */ fun consumerGroupDescriptionOf( coordinator: io.vertx.kafka.client.common.Node? = null, groupId: String? = null, members: Iterable? = null, partitionAssignor: String? = null, simpleConsumerGroup: Boolean? = null, state: ConsumerGroupState? = null): ConsumerGroupDescription = io.vertx.kafka.admin.ConsumerGroupDescription().apply { if (coordinator != null) { this.setCoordinator(coordinator) } if (groupId != null) { this.setGroupId(groupId) } if (members != null) { this.setMembers(members.toList()) } if (partitionAssignor != null) { this.setPartitionAssignor(partitionAssignor) } if (simpleConsumerGroup != null) { this.setSimpleConsumerGroup(simpleConsumerGroup) } if (state != null) { this.setState(state) } } /** * A function providing a DSL for building [io.vertx.kafka.admin.ConsumerGroupDescription] objects. * * A detailed description of a single consumer group in the cluster * * @param coordinator Set the consumer group coordinator, or null if the coordinator is not known * @param groupId Set the id of the consumer group * @param members Set a list of the members of the consumer group * @param partitionAssignor Set the consumer group partition assignor * @param simpleConsumerGroup Set if consumer group is simple or not * @param state Set the consumer group state, or UNKNOWN if the state is too new for us to parse * *

* NOTE: This function has been automatically generated from the [io.vertx.kafka.admin.ConsumerGroupDescription original] using Vert.x codegen. */ @Deprecated( message = "This function will be removed in a future version", replaceWith = ReplaceWith("consumerGroupDescriptionOf(coordinator, groupId, members, partitionAssignor, simpleConsumerGroup, state)") ) fun ConsumerGroupDescription( coordinator: io.vertx.kafka.client.common.Node? = null, groupId: String? = null, members: Iterable? = null, partitionAssignor: String? = null, simpleConsumerGroup: Boolean? = null, state: ConsumerGroupState? = null): ConsumerGroupDescription = io.vertx.kafka.admin.ConsumerGroupDescription().apply { if (coordinator != null) { this.setCoordinator(coordinator) } if (groupId != null) { this.setGroupId(groupId) } if (members != null) { this.setMembers(members.toList()) } if (partitionAssignor != null) { this.setPartitionAssignor(partitionAssignor) } if (simpleConsumerGroup != null) { this.setSimpleConsumerGroup(simpleConsumerGroup) } if (state != null) { this.setState(state) } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy