Class StringSerializer
java.lang.Object
com.linkedin.venice.serialization.StringSerializer
- All Implemented Interfaces:
VeniceKafkaSerializer<String>
,Closeable
,AutoCloseable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close this serializer.void
Configure this class.deserialize
(String topic, byte[] byteArray) Create an object from an array of bytesbyte[]
Construct an array of bytes from the given object
-
Constructor Details
-
StringSerializer
public StringSerializer()
-
-
Method Details
-
deserialize
Description copied from interface:VeniceKafkaSerializer
Create an object from an array of bytes- Specified by:
deserialize
in interfaceVeniceKafkaSerializer<String>
- Parameters:
topic
- Topic to which the array of bytes belongs.byteArray
- An array of bytes with the objects data- Returns:
- A java object serialzed from the bytes
-
close
public void close()Close this serializer. This method has to be idempotent if the serializer is used in KafkaProducer because it might be called multiple times.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceVeniceKafkaSerializer<String>
-
configure
Configure this class.- Specified by:
configure
in interfaceVeniceKafkaSerializer<String>
- Parameters:
configMap
- configs in key/value pairsisKey
- whether is for key or value
-
serialize
Description copied from interface:VeniceKafkaSerializer
Construct an array of bytes from the given object- Specified by:
serialize
in interfaceVeniceKafkaSerializer<String>
- Parameters:
topic
- Topic to which the object belongs.string
- The object- Returns:
- The bytes taken from the object
-