mjsax commented on a change in pull request #9039: URL: https://github.com/apache/kafka/pull/9039#discussion_r464728901
########## File path: streams/src/main/java/org/apache/kafka/streams/kstream/CogroupedKStream.java ########## @@ -275,6 +275,15 @@ */ <W extends Window> TimeWindowedCogroupedKStream<K, VOut> windowedBy(final Windows<W> windows); + /** + * Create a new {@link TimeWindowedCogroupedKStream} instance that can be used to perform sliding + * windowed aggregations. + * + * @param windows the specification of the aggregation {@link SlidingWindows} + * @return an instance of {@link TimeWindowedCogroupedKStream} + */ + TimeWindowedCogroupedKStream<K, VOut> windowedBy(final SlidingWindows windows); Review comment: This PR is rather larger. Would it maybe make sense to split it into 2 and add co-group in it's own PR? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org