Package org.apache.kafka.streams.kstream
Class TimeWindowedDeserializer<T>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.TimeWindowedDeserializer<T>
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Deserializer<Windowed<T>>
public class TimeWindowedDeserializer<T> extends Object implements Deserializer<Windowed<T>>
The inner serde class can be specified by setting the propertyStreamsConfig.DEFAULT_WINDOWED_KEY_SERDE_INNER_CLASSorStreamsConfig.DEFAULT_WINDOWED_VALUE_SERDE_INNER_CLASSif the no-arg constructor is called and hence it is not passed during initialization.
-
-
Constructor Summary
Constructors Constructor Description TimeWindowedDeserializer()TimeWindowedDeserializer(Deserializer<T> inner)Deprecated.TimeWindowedDeserializer(Deserializer<T> inner, Long windowSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close this deserializer.voidconfigure(Map<String,?> configs, boolean isKey)Configure this class.Windowed<T>deserialize(String topic, byte[] data)Deserialize a record value from a byte array into a value or object.LonggetWindowSize()voidsetIsChangelogTopic(boolean isChangelogTopic)-
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.Deserializer
deserialize
-
-
-
-
Constructor Detail
-
TimeWindowedDeserializer
public TimeWindowedDeserializer()
-
TimeWindowedDeserializer
@Deprecated public TimeWindowedDeserializer(Deserializer<T> inner)
Deprecated.
-
TimeWindowedDeserializer
public TimeWindowedDeserializer(Deserializer<T> inner, Long windowSize)
-
-
Method Detail
-
getWindowSize
public Long getWindowSize()
-
configure
public void configure(Map<String,?> configs, boolean isKey)
Description copied from interface:DeserializerConfigure this class.- Specified by:
configurein interfaceDeserializer<T>- Parameters:
configs- configs in key/value pairsisKey- whether is for key or value
-
deserialize
public Windowed<T> deserialize(String topic, byte[] data)
Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
deserializein interfaceDeserializer<T>- Parameters:
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.- Returns:
- deserialized typed data; may be null
-
close
public void close()
Description copied from interface:DeserializerClose this deserializer.This method must be idempotent as it may be called multiple times.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceDeserializer<T>
-
setIsChangelogTopic
public void setIsChangelogTopic(boolean isChangelogTopic)
-
-