Class ByteBufferSerializer
java.lang.Object
org.apache.kafka.common.serialization.ByteBufferSerializer
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Serializer<ByteBuffer>
public class ByteBufferSerializer extends Object implements Serializer<ByteBuffer>
-
Constructor Summary
Constructors Constructor Description ByteBufferSerializer()
-
Method Summary
Modifier and Type Method Description byte[]
serialize(String topic, ByteBuffer 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
-
Constructor Details
-
ByteBufferSerializer
public ByteBufferSerializer()
-
-
Method Details
-
serialize
Description copied from interface:Serializer
Convertdata
into a byte array.- Specified by:
serialize
in interfaceSerializer<ByteBuffer>
- Parameters:
topic
- topic associated with datadata
- typed data- Returns:
- serialized bytes
-