io.quarkus.kafka.client.runtime.devui.model.response.KafkaConsumerGroup 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 KafkaConsumerGroup {
private String name;
private String state;
private String coordinatorHost;
private int coordinatorId;
// The assignment strategy
private String protocol;
private long lag;
private Collection members;
public KafkaConsumerGroup() {
}
public KafkaConsumerGroup(String name, String state, String coordinatorHost, int coordinatorId, String protocol, long lag,
Collection members) {
this.name = name;
this.state = state;
this.coordinatorHost = coordinatorHost;
this.coordinatorId = coordinatorId;
this.protocol = protocol;
this.lag = lag;
this.members = members;
}
public String getName() {
return name;
}
public String getState() {
return state;
}
public String getCoordinatorHost() {
return coordinatorHost;
}
public int getCoordinatorId() {
return coordinatorId;
}
public String getProtocol() {
return protocol;
}
public long getLag() {
return lag;
}
public Collection getMembers() {
return members;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy