Class BytesSerializer
- java.lang.Object
 - 
- org.apache.kafka.common.serialization.BytesSerializer
 
 
- 
- All Implemented Interfaces:
 java.io.Closeable,java.lang.AutoCloseable,Serializer<org.apache.kafka.common.utils.Bytes>
public class BytesSerializer extends java.lang.Object implements Serializer<org.apache.kafka.common.utils.Bytes>
 
- 
- 
Constructor Summary
Constructors Constructor Description BytesSerializer() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]serialize(java.lang.String topic, org.apache.kafka.common.utils.Bytes data)Convertdatainto 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(java.lang.String topic, org.apache.kafka.common.utils.Bytes data)Description copied from interface:SerializerConvertdatainto a byte array.- Specified by:
 serializein interfaceSerializer<org.apache.kafka.common.utils.Bytes>- Parameters:
 topic- topic associated with datadata- typed data- Returns:
 - serialized bytes
 
 
 - 
 
 -