Class DeduplicateFunctionBase<T,K,IN,OUT>
- java.lang.Object
-
- org.apache.flink.api.common.functions.AbstractRichFunction
-
- org.apache.flink.streaming.api.functions.KeyedProcessFunction<K,IN,OUT>
-
- org.apache.flink.table.runtime.operators.deduplicate.DeduplicateFunctionBase<T,K,IN,OUT>
-
- Type Parameters:
T- Type of the value in the state.K- Type of the key.IN- Type of the input elements.OUT- Type of the returned elements.
- All Implemented Interfaces:
Serializable,org.apache.flink.api.common.functions.Function,org.apache.flink.api.common.functions.RichFunction
- Direct Known Subclasses:
AsyncStateRowTimeDeduplicateFunction,ProcTimeDeduplicateKeepFirstRowFunction,ProcTimeDeduplicateKeepLastRowFunction,RowTimeDeduplicateFunction
public abstract class DeduplicateFunctionBase<T,K,IN,OUT> extends org.apache.flink.streaming.api.functions.KeyedProcessFunction<K,IN,OUT>Base class for deduplicate function.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.flink.api.common.typeutils.TypeSerializer<OUT>serializerprotected longstateRetentionTimeprotected org.apache.flink.api.common.typeinfo.TypeInformation<T>typeInfo
-
Constructor Summary
Constructors Constructor Description DeduplicateFunctionBase(org.apache.flink.api.common.typeinfo.TypeInformation<T> typeInfo, org.apache.flink.api.common.typeutils.TypeSerializer<OUT> serializer, long stateRetentionTime)
-