IN Spring boot Kafka STream I have following KStream:
Function<KStream<String,InputType>, KStream<String, OutputType>> process() {
}
So here input is of InputType
object and output content is OutputType
object. For this I want to write a custom serde. What my understanding is that in Serde ser/der should be of same data type. SO how can I write a serde that accept one object and send other object. OR SHoul I consider custom ser/deser in this case?