Uses of Class
org.apache.flink.table.functions.ImperativeAggregateFunction
Packages that use ImperativeAggregateFunction
-
Uses of ImperativeAggregateFunction in org.apache.flink.table.functions
Subclasses of ImperativeAggregateFunction in org.apache.flink.table.functionsModifier and TypeClassDescriptionclassAggregateFunction<T,ACC> Base class for a user-defined aggregate function.classTableAggregateFunction<T,ACC> Base class for a user-defined table aggregate function.Methods in org.apache.flink.table.functions with parameters of type ImperativeAggregateFunctionModifier and TypeMethodDescriptionstatic <T,ACC> org.apache.flink.api.common.typeinfo.TypeInformation<ACC> UserDefinedFunctionHelper.getAccumulatorTypeOfAggregateFunction(ImperativeAggregateFunction<T, ACC> aggregateFunction) Tries to infer the TypeInformation of an AggregateFunction's accumulator type.static <T,ACC> org.apache.flink.api.common.typeinfo.TypeInformation<ACC> UserDefinedFunctionHelper.getAccumulatorTypeOfAggregateFunction(ImperativeAggregateFunction<T, ACC> aggregateFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> scalaType) Tries to infer the TypeInformation of an AggregateFunction's accumulator type.static InputTypeStrategyLegacyUserDefinedFunctionInference.getInputTypeStrategy(ImperativeAggregateFunction<?, ?> func) Deprecated.static <T,ACC> org.apache.flink.api.common.typeinfo.TypeInformation<T> UserDefinedFunctionHelper.getReturnTypeOfAggregateFunction(ImperativeAggregateFunction<T, ACC> aggregateFunction) Tries to infer the TypeInformation of an AggregateFunction's accumulator type.static <T,ACC> org.apache.flink.api.common.typeinfo.TypeInformation<T> UserDefinedFunctionHelper.getReturnTypeOfAggregateFunction(ImperativeAggregateFunction<T, ACC> aggregateFunction, org.apache.flink.api.common.typeinfo.TypeInformation<T> scalaType) Tries to infer the TypeInformation of an AggregateFunction's accumulator type. -
Uses of ImperativeAggregateFunction in org.apache.flink.table.functions.python
Subclasses of ImperativeAggregateFunction in org.apache.flink.table.functions.pythonModifier and TypeClassDescriptionclassThe wrapper of user defined python aggregate function.classThe wrapper of user defined python table aggregate function.