showuon commented on a change in pull request #11705: URL: https://github.com/apache/kafka/pull/11705#discussion_r808708709
########## File path: streams/src/main/java/org/apache/kafka/streams/StreamsBuilder.java ########## @@ -81,14 +81,19 @@ public StreamsBuilder() { internalStreamsBuilder = new InternalStreamsBuilder(internalTopologyBuilder); } - protected StreamsBuilder(final TopologyConfig topologyConfigs) { + /** + * Create a {@code StreamsBuilder} instance. + * + * @param topologyConfigs the streams configs that apply at the topology level. Please refer to {@link TopologyConfig} for more detail + */ + public StreamsBuilder(final TopologyConfig topologyConfigs) { topology = getNewTopology(topologyConfigs); internalTopologyBuilder = topology.internalTopologyBuilder; internalStreamsBuilder = new InternalStreamsBuilder(internalTopologyBuilder); } protected Topology getNewTopology(final TopologyConfig topologyConfigs) { Review comment: @ableegoldman , just to confirm, you mean [this constructor](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/processor/internals/InternalTopologyBuilder.java#L72-L75), right? If so, I agree we should remove it after we introduced the public API in `StreamBuilder`. -- 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