UladzislauBlok commented on code in PR #21755:
URL: https://github.com/apache/kafka/pull/21755#discussion_r2937181033
##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/WindowedSerializer.java:
##########
@@ -16,10 +16,11 @@
*/
package org.apache.kafka.streams.kstream.internals;
+import org.apache.kafka.common.header.Headers;
import org.apache.kafka.common.serialization.Serializer;
import org.apache.kafka.streams.kstream.Windowed;
public interface WindowedSerializer<T> extends Serializer<Windowed<T>> {
- byte[] serializeBaseKey(String topic, Windowed<T> data);
+ byte[] serializeBaseKey(String topic, Headers headers, Windowed<T> data);
Review Comment:
I see. I already changed it to be default method
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]