public class SessionWindowedDeserializer<T> extends java.lang.Object implements Deserializer<Windowed<T>>
StreamsConfig.DEFAULT_WINDOWED_KEY_SERDE_INNER_CLASS
or
StreamsConfig.DEFAULT_WINDOWED_VALUE_SERDE_INNER_CLASS
if the no-arg constructor is called and hence it is not passed during initialization.Constructor and Description |
---|
SessionWindowedDeserializer() |
SessionWindowedDeserializer(Deserializer<T> inner) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
configure(java.util.Map<java.lang.String,?> configs,
boolean isKey)
Configure this class.
|
Windowed<T> |
deserialize(java.lang.String topic,
byte[] data)
Deserialize a record value from a byte array into a value or object.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
deserialize
public SessionWindowedDeserializer()
public SessionWindowedDeserializer(Deserializer<T> inner)
public void configure(java.util.Map<java.lang.String,?> configs, boolean isKey)
Deserializer
configure
in interface Deserializer<Windowed<T>>
configs
- configs in key/value pairsisKey
- whether is for key or valuepublic Windowed<T> deserialize(java.lang.String topic, byte[] data)
Deserializer
deserialize
in interface Deserializer<Windowed<T>>
topic
- topic associated with the datadata
- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.public void close()
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in interface Deserializer<Windowed<T>>