Class ExtendedDeserializer.Wrapper<T>

    • Constructor Detail

    • Method Detail

      • deserialize

        public T deserialize​(java.lang.String topic,
                             Headers headers,
                             byte[] data)
        Description copied from interface: ExtendedDeserializer
        Deserialize a record value from a byte array into a value or object.
        Specified by:
        deserialize in interface Deserializer<T>
        Specified by:
        deserialize in interface ExtendedDeserializer<T>
        Parameters:
        topic - topic associated with the data
        headers - headers associated with the record; may be empty.
        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
      • configure

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

        public T deserialize​(java.lang.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<T>
        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()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface Deserializer<T>