Class DoubleSerializer
- java.lang.Object
-
- org.apache.kafka.common.serialization.DoubleSerializer
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Serializer<Double>
public class DoubleSerializer extends Object implements Serializer<Double>
-
-
Constructor Summary
Constructors Constructor Description DoubleSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
serialize(String topic, Double data)
Convertdata
into a byte array.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.kafka.common.serialization.Serializer
close, configure, serialize
-
-
-
-
Method Detail
-
serialize
public byte[] serialize(String topic, Double data)
Description copied from interface:Serializer
Convertdata
into a byte array.- Specified by:
serialize
in interfaceSerializer<Double>
- Parameters:
topic
- topic associated with datadata
- typed data- Returns:
- serialized bytes
-
-