Interface VeniceKafkaSerializer<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void close()
      Close this serializer.
      void configure​(java.util.Map<java.lang.String,​?> configMap, boolean isKey)
      Configure this class.
      T deserialize​(java.lang.String topic, byte[] bytes)
      Create an object from an array of bytes
      byte[] serialize​(java.lang.String topic, T object)
      Construct an array of bytes from the given object
      • Methods inherited from interface org.apache.kafka.common.serialization.Deserializer

        deserialize
      • Methods inherited from interface org.apache.kafka.common.serialization.Serializer

        serialize
    • Method Detail

      • close

        void close()
        Close this serializer. This method has to be idempotent if the serializer is used in KafkaProducer because it might be called multiple times.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface org.apache.kafka.common.serialization.Deserializer<T>
        Specified by:
        close in interface org.apache.kafka.common.serialization.Serializer<T>
      • configure

        void configure​(java.util.Map<java.lang.String,​?> configMap,
                       boolean isKey)
        Configure this class.
        Specified by:
        configure in interface org.apache.kafka.common.serialization.Deserializer<T>
        Specified by:
        configure in interface org.apache.kafka.common.serialization.Serializer<T>
        Parameters:
        configMap - configs in key/value pairs
        isKey - whether is for key or value
      • serialize

        byte[] serialize​(java.lang.String topic,
                         T object)
        Construct an array of bytes from the given object
        Specified by:
        serialize in interface org.apache.kafka.common.serialization.Serializer<T>
        Parameters:
        topic - Topic to which the object belongs.
        object - The object
        Returns:
        The bytes taken from the object
      • deserialize

        T deserialize​(java.lang.String topic,
                      byte[] bytes)
        Create an object from an array of bytes
        Specified by:
        deserialize in interface org.apache.kafka.common.serialization.Deserializer<T>
        Parameters:
        topic - Topic to which the array of bytes belongs.
        bytes - An array of bytes with the objects data
        Returns:
        A java object serialzed from the bytes