Kafka - Advanced Stream Processing
What will the deserializer return for input null in this code?
public String deserialize(String topic, byte[] data) {
if (data == null) return null;
return new String(data, StandardCharsets.UTF_8);
}What will the deserializer return for input null in this code?
public String deserialize(String topic, byte[] data) {
if (data == null) return null;
return new String(data, StandardCharsets.UTF_8);
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions