Class BytesSerializer

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable, Serializer<org.apache.kafka.common.utils.Bytes>

    public class BytesSerializer
    extends java.lang.Object
    implements Serializer<org.apache.kafka.common.utils.Bytes>
    • Constructor Summary

      Constructors 
      Constructor Description
      BytesSerializer()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()
      Close this serializer.
      void configure​(java.util.Map<java.lang.String,​?> configs, boolean isKey)
      Configure this class.
      byte[] serialize​(java.lang.String topic, org.apache.kafka.common.utils.Bytes data)
      Convert data into a byte array.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BytesSerializer

        public BytesSerializer()
    • Method Detail

      • configure

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

        public byte[] serialize​(java.lang.String topic,
                                org.apache.kafka.common.utils.Bytes data)
        Description copied from interface: Serializer
        Convert data into a byte array.
        Specified by:
        serialize in interface Serializer<org.apache.kafka.common.utils.Bytes>
        Parameters:
        topic - topic associated with data
        data - typed data
        Returns:
        serialized bytes
      • close

        public void close()
        Description copied from interface: Serializer
        Close this serializer. This method must be idempotent as it may 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 Serializer<org.apache.kafka.common.utils.Bytes>