shashankhs11 commented on code in PR #20408: URL: https://github.com/apache/kafka/pull/20408#discussion_r2305392513
########## docs/streams/developer-guide/datatypes.html: ########## @@ -163,6 +164,72 @@ <h3>JSON<a class="headerlink" href="#json" title="Permalink to this headline"></ <p>As shown in the example, you can use JSONSerdes inner classes <code class="docutils literal"><span class="pre">Serdes.serdeFrom(<serializerInstance>, <deserializerInstance>)</span></code> to construct JSON compatible serializers and deserializers. </p> </div> + <div class="section" id="window-serdes"> + <h3>Window Serdes<a class="headerlink" href="#window-serdes" title="Permalink to this headline"></a></h3> + <p>Apache Kafka Streams includes serde implementations for windowed keys in + its <code class="docutils literal"><span class="pre">kafka-streams</span></code> Maven artifact:</p> + <pre class="line-numbers"><code class="language-xml"><dependency> + <groupId>org.apache.kafka</groupId> + <artifactId>kafka-streams</artifactId> + <version>{{fullDotVersion}}</version> +</dependency></code></pre> + <p>This artifact provides the following windowed serde implementations under the package <a class="reference external" href="https://github.com/apache/kafka/blob/{{dotVersion}}/streams/src/main/java/org/apache/kafka/streams/kstream">org.apache.kafka.streams.kstream</a>:</p> + <table border="1" class="docutils"> + <colgroup> + <col width="17%" /> + <col width="83%" /> + </colgroup> + <thead valign="bottom"> + <tr class="row-odd"><th class="head">Data type</th> + <th class="head">Serde</th> + </tr> + </thead> + <tbody valign="top"> + <tr class="row-even"><td>Windowed<T> (Time Windows)</td> Review Comment: Sounds good! addressed in c1a52d7. Here is a quick preview of these changes <img width="871" height="397" alt="image" src="https://github.com/user-attachments/assets/961386ec-ddc7-4635-8819-67acd7b46539" /> -- 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