io.quarkus.kafka.client.runtime.devui.model.response.KafkaConsumerGroupMember Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-client Show documentation
Show all versions of quarkus-kafka-client Show documentation
Connect to Apache Kafka with its native API
package io.quarkus.kafka.client.runtime.devui.model.response;
import java.util.Collection;
public class KafkaConsumerGroupMember {
private String memberId;
private String clientId;
private String host;
private Collection partitions;
public KafkaConsumerGroupMember() {
}
public KafkaConsumerGroupMember(String memberId, String clientId, String host,
Collection partitions) {
this.memberId = memberId;
this.clientId = clientId;
this.host = host;
this.partitions = partitions;
}
public String getMemberId() {
return memberId;
}
public String getClientId() {
return clientId;
}
public String getHost() {
return host;
}
public Collection getPartitions() {
return partitions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy