rreddy-22 commented on code in PR #13998: URL: https://github.com/apache/kafka/pull/13998#discussion_r1269930044
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/assignor/AssignmentTopicMetadata.java: ########## @@ -16,44 +16,83 @@ */ package org.apache.kafka.coordinator.group.assignor; -/** - * Metadata of a topic. - */ -public class AssignmentTopicMetadata { +import org.apache.kafka.common.Uuid; + +import java.util.Collections; +import java.util.Map; +import java.util.Objects; +import java.util.Set; + +public class AssignmentTopicMetadata implements AssignmentTopicDescriber { Review Comment: TargetAssignmentBuilder is part of the consumer package though and I don't think this has anything to do with the consumer except for the fact that its the topics that the consumer is subscribed to. Is this cause we're gonna make the assignor package public and this class isnt? -- 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