guozhangwang commented on code in PR #17892: URL: https://github.com/apache/kafka/pull/17892#discussion_r1855696041
########## streams/src/main/java/org/apache/kafka/streams/processor/internals/InternalTopologyBuilder.java: ########## @@ -2245,4 +2272,22 @@ public boolean hasNamedTopology() { public synchronized Map<String, StoreFactory> stateStores() { return stateFactories; } + + public <KIn, VIn, VOut> WrappedFixedKeyProcessorSupplier<KIn, VIn, VOut> wrapFixedKeyProcessorSupplier( + final String name, + final FixedKeyProcessorSupplier<KIn, VIn, VOut> processorSupplier + ) { + return ProcessorWrapper.asWrappedFixedKey( + processorWrapper.wrapFixedKeyProcessorSupplier(name, processorSupplier) Review Comment: I see, yeah I think having a different name for the static utility function would be better. -- 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