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>
ByteBufferSerializeralwaysrewindsthe position of the input buffer to zero for serialization. A manual rewind is not necessary.Note: any existing buffer position is ignored.
The position is also rewound back to zero before
serialize(String, ByteBuffer)returns.
-
-
Constructor Summary
Constructors Constructor Description ByteBufferSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]serialize(String topic, ByteBuffer data)Convertdatainto a byte array.-
Methods inherited from class java.lang.Object
equals, 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, ByteBuffer data)
Description copied from interface:SerializerConvertdatainto a byte array.- Specified by:
serializein interfaceSerializer<ByteBuffer>- Parameters:
topic- topic associated with datadata- typed data- Returns:
- serialized bytes
-
-