Class PythonFunctionInfo
- java.lang.Object
-
- org.apache.flink.table.functions.python.PythonFunctionInfo
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DataStreamPythonFunctionInfo
,PythonAggregateFunctionInfo
@Internal public class PythonFunctionInfo extends Object implements Serializable
PythonFunctionInfo contains the execution information of a Python function, such as: the actual Python function, the input arguments, etc.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PythonFunctionInfo(PythonFunction pythonFunction, Object[] inputs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]
getInputs()
PythonFunction
getPythonFunction()
void
setInputs(Object[] inputs)
-
-
-
Constructor Detail
-
PythonFunctionInfo
public PythonFunctionInfo(PythonFunction pythonFunction, Object[] inputs)
-
-
Method Detail
-
getPythonFunction
public PythonFunction getPythonFunction()
-
getInputs
public Object[] getInputs()
-
setInputs
public void setInputs(Object[] inputs)
-
-