[ https://issues.apache.org/jira/browse/KAFKA-15775?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Philip Nee updated KAFKA-15775: ------------------------------- Parent: KAFKA-14048 Issue Type: Sub-task (was: Task) > Implement listTopics() and partitionFor() for the AsyncKafkaConsumer > -------------------------------------------------------------------- > > Key: KAFKA-15775 > URL: https://issues.apache.org/jira/browse/KAFKA-15775 > Project: Kafka > Issue Type: Sub-task > Reporter: Philip Nee > Priority: Major > > {code:java} > @Override > public List<PartitionInfo> partitionsFor(String topic) { > return partitionsFor(topic, Duration.ofMillis(defaultApiTimeoutMs)); > } > @Override > public List<PartitionInfo> partitionsFor(String topic, Duration timeout) { > throw new KafkaException("method not implemented"); > } > @Override > public Map<String, List<PartitionInfo>> listTopics() { > return listTopics(Duration.ofMillis(defaultApiTimeoutMs)); > } > @Override > public Map<String, List<PartitionInfo>> listTopics(Duration timeout) { > throw new KafkaException("method not implemented"); > } {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)