Package org.apache.kafka.clients.admin
Class ConsumerGroupListing
- java.lang.Object
-
- org.apache.kafka.clients.admin.ConsumerGroupListing
-
public class ConsumerGroupListing extends Object
A listing of a consumer group in the cluster.
-
-
Constructor Summary
Constructors Constructor Description ConsumerGroupListing(String groupId, boolean isSimpleConsumerGroup)
Create an instance with the specified parameters.ConsumerGroupListing(String groupId, boolean isSimpleConsumerGroup, Optional<ConsumerGroupState> state)
Create an instance with the specified parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
groupId()
Consumer Group Idint
hashCode()
boolean
isSimpleConsumerGroup()
If Consumer Group is simple or not.Optional<ConsumerGroupState>
state()
Consumer Group stateString
toString()
-
-
-
Constructor Detail
-
ConsumerGroupListing
public ConsumerGroupListing(String groupId, boolean isSimpleConsumerGroup)
Create an instance with the specified parameters.- Parameters:
groupId
- Group IdisSimpleConsumerGroup
- If consumer group is simple or not.
-
ConsumerGroupListing
public ConsumerGroupListing(String groupId, boolean isSimpleConsumerGroup, Optional<ConsumerGroupState> state)
Create an instance with the specified parameters.- Parameters:
groupId
- Group IdisSimpleConsumerGroup
- If consumer group is simple or not.state
- The state of the consumer group
-
-
Method Detail
-
groupId
public String groupId()
Consumer Group Id
-
isSimpleConsumerGroup
public boolean isSimpleConsumerGroup()
If Consumer Group is simple or not.
-
state
public Optional<ConsumerGroupState> state()
Consumer Group state
-
-