public class FloatDeserializer extends Object implements Deserializer<Float>
Constructor and Description |
---|
FloatDeserializer() |
Modifier and Type | Method and Description |
---|---|
Float |
deserialize(String topic,
byte[] data)
Deserialize a record value from a byte array into a value or object.
|
Float |
deserialize(String topic,
Headers headers,
ByteBuffer data)
Deserialize a record value from a ByteBuffer into a value or object.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
close, configure, deserialize
public Float deserialize(String topic, byte[] data)
Deserializer
deserialize
in interface Deserializer<Float>
topic
- topic associated with the datadata
- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.public Float deserialize(String topic, Headers headers, ByteBuffer data)
Deserializer
deserialize
in interface Deserializer<Float>
topic
- topic associated with the dataheaders
- headers associated with the record; may be empty.data
- serialized ByteBuffer; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.