Package org.apache.kafka.clients.admin
Class ListConsumerGroupOffsetsResult
java.lang.Object
org.apache.kafka.clients.admin.ListConsumerGroupOffsetsResult
@Evolving public class ListConsumerGroupOffsetsResult extends Object
The result of the
Admin.listConsumerGroupOffsets(String)
call.
The API of this class is evolving, see Admin
for details.
-
Method Summary
Modifier and Type Method Description KafkaFuture<Map<TopicPartition,OffsetAndMetadata>>
partitionsToOffsetAndMetadata()
Return a future which yields a map of topic partitions to OffsetAndMetadata objects.
-
Method Details
-
partitionsToOffsetAndMetadata
Return a future which yields a map of topic partitions to OffsetAndMetadata objects. If the group does not have a committed offset for this partition, the corresponding value in the returned map will be null.
-