Package org.apache.kafka.clients.admin
Class ListConsumerGroupOffsetsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.ListConsumerGroupOffsetsResult
-
@Evolving public class ListConsumerGroupOffsetsResult extends java.lang.Object
The result of theAdminClient.listConsumerGroupOffsets(String)
call.The API of this class is evolving, see
AdminClient
for details.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaFuture<java.util.Map<TopicPartition,OffsetAndMetadata>>
partitionsToOffsetAndMetadata()
Return a future which yields a map of topic partitions to OffsetAndMetadata objects.
-
-
-
Method Detail
-
partitionsToOffsetAndMetadata
public KafkaFuture<java.util.Map<TopicPartition,OffsetAndMetadata>> partitionsToOffsetAndMetadata()
Return a future which yields a map of topic partitions to OffsetAndMetadata objects.
-
-