have anyone used public synchronized <K, V> KStream<K, V> stream(final
Collection<String> topics)?
my use case is I have one stream but with two source input using different
serde.
looks like the best way is to use this stream API, but I have some concerns
1. currently the only API I can use is
public synchronized <K, V> KStream<K, V> stream(final Collection<String> topics)
does it means after I got it, I have to deserialize the data myself?
and will it slow down the performance, compare to using it with consumed.with ?
2. will it in the future support public synchronized <K, V> KStream<K, V>
stream(final Collection<List<TopicsWithConsumed>> )
class TopicsWithConsumed pair{
final String topic
final Consumed<K, V> consumed
}