io.quarkus.kafka.client.runtime.devui.model.response.KafkaConsumerGroupMemberPartitionAssignment 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;
public class KafkaConsumerGroupMemberPartitionAssignment {
private int partition;
private String topic;
private long lag;
public KafkaConsumerGroupMemberPartitionAssignment() {
}
public KafkaConsumerGroupMemberPartitionAssignment(int partition, String topic, long lag) {
this.partition = partition;
this.topic = topic;
this.lag = lag;
}
public int getPartition() {
return partition;
}
public String getTopic() {
return topic;
}
public long getLag() {
return lag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy