Package org.apache.kafka.clients.admin
Class ListOffsetsResult
java.lang.Object
org.apache.kafka.clients.admin.ListOffsetsResult
@Evolving public class ListOffsetsResult extends Object
The result of the
Admin.listOffsets(Map)
call.
The API of this class is evolving, see AdminClient
for details.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ListOffsetsResult.ListOffsetsResultInfo
-
Constructor Summary
Constructors Constructor Description ListOffsetsResult(Map<TopicPartition,KafkaFuture<ListOffsetsResult.ListOffsetsResultInfo>> futures)
-
Method Summary
Modifier and Type Method Description KafkaFuture<Map<TopicPartition,ListOffsetsResult.ListOffsetsResultInfo>>
all()
Return a future which succeeds only if offsets for all specified partitions have been successfully retrieved.KafkaFuture<ListOffsetsResult.ListOffsetsResultInfo>
partitionResult(TopicPartition partition)
Return a future which can be used to check the result for a given partition.
-
Constructor Details
-
ListOffsetsResult
public ListOffsetsResult(Map<TopicPartition,KafkaFuture<ListOffsetsResult.ListOffsetsResultInfo>> futures)
-
-
Method Details
-
partitionResult
public KafkaFuture<ListOffsetsResult.ListOffsetsResultInfo> partitionResult(TopicPartition partition)Return a future which can be used to check the result for a given partition. -
all
Return a future which succeeds only if offsets for all specified partitions have been successfully retrieved.
-