Class ListDeserializer<Inner>
java.lang.Object
org.apache.kafka.common.serialization.ListDeserializer<Inner>
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- Deserializer<List<Inner>>
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Close this deserializer.voidConfigure this class.deserialize(String topic, byte[] data) Deserialize a record value from a byte array into a value or object.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.kafka.common.serialization.Deserializerdeserialize
- 
Constructor Details- 
ListDeserializerpublic ListDeserializer()
- 
ListDeserializer
 
- 
- 
Method Details- 
innerDeserializer
- 
configureDescription copied from interface:DeserializerConfigure this class.- Specified by:
- configurein interface- Deserializer<Inner>
- Parameters:
- configs- configs in key/value pairs
- isKey- whether is for key or value
 
- 
deserializeDescription copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
- deserializein interface- Deserializer<Inner>
- Parameters:
- topic- topic associated with the data
- data- 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
 
- 
closepublic void close()Description copied from interface:DeserializerClose this deserializer.This method must be idempotent as it may be called multiple times. - Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Specified by:
- closein interface- Deserializer<Inner>
 
 
-