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 Details

    • ListDeserializer

      public ListDeserializer()
    • ListDeserializer

      public ListDeserializer​(Class<L> listClass, Deserializer<Inner> inner)
  • Method Details

    • innerDeserializer

      public Deserializer<Inner> innerDeserializer()
    • configure

      public void configure​(Map<String,​?> configs, boolean isKey)
      Description copied from interface: Deserializer
      Configure this class.
      Specified by:
      configure in interface Deserializer<Inner>
      Parameters:
      configs - configs in key/value pairs
      isKey - whether is for key or value
    • deserialize

      public List<Inner> deserialize​(String topic, byte[] data)
      Description copied from interface: Deserializer
      Deserialize a record value from a byte array into a value or object.
      Specified by:
      deserialize in 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
    • close

      public void close()
      Description copied from interface: Deserializer
      Close this deserializer.

      This method must be idempotent as it may be called multiple times.

      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Specified by:
      close in interface Deserializer<Inner>