Class ListDeserializer<Inner>
java.lang.Object
org.apache.kafka.common.serialization.ListDeserializer<Inner>
- All Implemented Interfaces:
Closeable,AutoCloseable,Deserializer<List<Inner>>
public class ListDeserializer<Inner> extends Object implements Deserializer<List<Inner>>
-
Constructor Summary
Constructors Constructor Description ListDeserializer()ListDeserializer(Class<L> listClass, Deserializer<Inner> inner) -
Method Summary
Modifier and Type Method Description voidclose()Close this deserializer.voidconfigure(Map<String,?> configs, boolean isKey)Configure this class.List<Inner>deserialize(String topic, byte[] data)Deserialize a record value from a byte array into a value or object.Deserializer<Inner>innerDeserializer()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.kafka.common.serialization.Deserializer
deserialize
-
Constructor Details
-
ListDeserializer
public ListDeserializer() -
ListDeserializer
-
-
Method Details
-
innerDeserializer
-
configure
Description copied from interface:DeserializerConfigure this class.- Specified by:
configurein interfaceDeserializer<Inner>- Parameters:
configs- configs in key/value pairsisKey- whether is for key or value
-
deserialize
Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
deserializein interfaceDeserializer<Inner>- Parameters:
topic- topic associated with the datadata- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.- Returns:
- deserialized typed data; may be null
-
close
public void close()Description copied from interface:DeserializerClose this deserializer.This method must be idempotent as it may be called multiple times.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceDeserializer<Inner>
-