Package org.apache.kafka.clients.admin
Class DescribeConsumerGroupsResult
java.lang.Object
org.apache.kafka.clients.admin.DescribeConsumerGroupsResult
The result of the
KafkaAdminClient.describeConsumerGroups(Collection, DescribeConsumerGroupsOptions)} call.
The API of this class is evolving, see Admin for details.-
Constructor Summary
ConstructorsConstructorDescriptionDescribeConsumerGroupsResult(Map<String, org.apache.kafka.common.KafkaFuture<ConsumerGroupDescription>> futures) -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.kafka.common.KafkaFuture<Map<String, ConsumerGroupDescription>> all()Return a future which yields all ConsumerGroupDescription objects, if all the describes succeed.Map<String, org.apache.kafka.common.KafkaFuture<ConsumerGroupDescription>> Return a map from group id to futures which yield group descriptions.
-
Constructor Details
-
DescribeConsumerGroupsResult
public DescribeConsumerGroupsResult(Map<String, org.apache.kafka.common.KafkaFuture<ConsumerGroupDescription>> futures)
-
-
Method Details
-
describedGroups
Return a map from group id to futures which yield group descriptions. -
all
Return a future which yields all ConsumerGroupDescription objects, if all the describes succeed.
-