Class Serdes.WrapperSerde<T>
- java.lang.Object
 - 
- org.apache.kafka.common.serialization.Serdes.WrapperSerde<T>
 
 
- 
- All Implemented Interfaces:
 Closeable,AutoCloseable,Serde<T>
- Direct Known Subclasses:
 Serdes.BooleanSerde,Serdes.ByteArraySerde,Serdes.ByteBufferSerde,Serdes.BytesSerde,Serdes.DoubleSerde,Serdes.FloatSerde,Serdes.IntegerSerde,Serdes.ListSerde,Serdes.LongSerde,Serdes.ShortSerde,Serdes.StringSerde,Serdes.UUIDSerde,Serdes.VoidSerde
- Enclosing class:
 - Serdes
 
public static class Serdes.WrapperSerde<T> extends Object implements Serde<T>
 
- 
- 
Constructor Summary
Constructors Constructor Description WrapperSerde(Serializer<T> serializer, Deserializer<T> deserializer) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close this serde class, which will close the underlying serializer and deserializer.voidconfigure(Map<String,?> configs, boolean isKey)Configure this class, which will configure the underlying serializer and deserializer.Deserializer<T>deserializer()Serializer<T>serializer() 
 - 
 
- 
- 
Constructor Detail
- 
WrapperSerde
public WrapperSerde(Serializer<T> serializer, Deserializer<T> deserializer)
 
 - 
 
- 
Method Detail
- 
configure
public void configure(Map<String,?> configs, boolean isKey)
Description copied from interface:SerdeConfigure this class, which will configure the underlying serializer and deserializer. 
- 
close
public void close()
Description copied from interface:SerdeClose this serde class, which will close the underlying serializer and deserializer.This method has to be idempotent because it might be called multiple times.
 
- 
serializer
public Serializer<T> serializer()
- Specified by:
 serializerin interfaceSerde<T>
 
- 
deserializer
public Deserializer<T> deserializer()
- Specified by:
 deserializerin interfaceSerde<T>
 
 - 
 
 -