guozhangwang commented on code in PR #12337: URL: https://github.com/apache/kafka/pull/12337#discussion_r911482211
########## clients/src/main/java/org/apache/kafka/clients/admin/ListConsumerGroupOffsetsOptions.java: ########## @@ -44,10 +45,21 @@ public ListConsumerGroupOffsetsOptions topicPartitions(List<TopicPartition> topi return this; } + /** + * Sets an optional requireStable flag. + */ + public void requireStable(final boolean requireStable) { + this.requireStable = requireStable; + } + /** * Returns a list of topic partitions to add as part of the result. */ public List<TopicPartition> topicPartitions() { return topicPartitions; } + + public boolean shouldRequireStable() { Review Comment: I intentionally made it so to differentiate with the setter. I saw that in some options we use exactly the same function name, but in some other options we do similar things like here. I'm personally fine either way, will include it in the KIP proposal and let everyone to debate on it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org