Class FloatDeserializer

java.lang.Object
org.apache.kafka.common.serialization.FloatDeserializer
All Implemented Interfaces:
Closeable, AutoCloseable, Deserializer<Float>

public class FloatDeserializer
extends Object
implements Deserializer<Float>
  • Constructor Details

    • FloatDeserializer

      public FloatDeserializer()
  • Method Details

    • deserialize

      public Float 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<Float>
      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