Class BytesDeserializer

java.lang.Object
org.apache.kafka.common.serialization.BytesDeserializer
All Implemented Interfaces:
Closeable, AutoCloseable, Deserializer<org.apache.kafka.common.utils.Bytes>

public class BytesDeserializer
extends Object
implements Deserializer<org.apache.kafka.common.utils.Bytes>
  • Constructor Details

    • BytesDeserializer

      public BytesDeserializer()
  • Method Details

    • deserialize

      public org.apache.kafka.common.utils.Bytes 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<org.apache.kafka.common.utils.Bytes>
      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