showuon commented on a change in pull request #11124: URL: https://github.com/apache/kafka/pull/11124#discussion_r679682023
########## File path: streams/src/main/java/org/apache/kafka/streams/kstream/internals/TimeWindow.java ########## @@ -19,33 +19,24 @@ import org.apache.kafka.streams.kstream.Window; /** - * A {@link TimeWindow} covers a half-open time interval with its start timestamp as an inclusive boundary and its end - * timestamp as exclusive boundary. - * It is a fixed size window, i.e., all instances (of a single {@link org.apache.kafka.streams.kstream.TimeWindows - * window specification}) will have the same size. - * <p> - * For time semantics, see {@link org.apache.kafka.streams.processor.TimestampExtractor TimestampExtractor}. + * A {@link TimeWindow} is a time interval window container that holds the start and end time for use in window-agnostic cases, + * ex: in {@link org.apache.kafka.streams.state.WindowStore}, we'll store the aggregated values of any fixed-size types of time windows. + * We use {@link TimeWindow} to represent these time windows Review comment: change the `TimeWindow` java doc description -- 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