Uses of Interface
org.apache.flink.api.common.operators.util.UserCodeWrapper
-
Packages that use UserCodeWrapper Package Description org.apache.flink.api.common.operators org.apache.flink.api.common.operators.base org.apache.flink.api.common.operators.util -
-
Uses of UserCodeWrapper in org.apache.flink.api.common.operators
Fields in org.apache.flink.api.common.operators declared as UserCodeWrapper Modifier and Type Field Description protected UserCodeWrapper<? extends OutputFormat<IN>>GenericDataSinkBase. formatWrapperprotected UserCodeWrapper<? extends T>GenericDataSourceBase. formatWrapperprotected UserCodeWrapper<FT>AbstractUdfOperator. userFunctionThe object or class containing the user function.Methods in org.apache.flink.api.common.operators that return UserCodeWrapper Modifier and Type Method Description UserCodeWrapper<? extends OutputFormat<IN>>GenericDataSinkBase. getFormatWrapper()Gets the class describing this sinks output format.UserCodeWrapper<? extends T>GenericDataSourceBase. getFormatWrapper()Gets the class describing the input format.UserCodeWrapper<FT>AbstractUdfOperator. getUserCodeWrapper()Gets the function that is held by this operator.UserCodeWrapper<? extends OutputFormat<IN>>GenericDataSinkBase. getUserCodeWrapper()Gets the class describing the output format.UserCodeWrapper<? extends T>GenericDataSourceBase. getUserCodeWrapper()Gets the class describing the input format.UserCodeWrapper<?>Operator. getUserCodeWrapper()Gets the user code wrapper.Constructors in org.apache.flink.api.common.operators with parameters of type UserCodeWrapper Constructor Description AbstractUdfOperator(UserCodeWrapper<FT> function, OperatorInformation<OUT> operatorInfo, String name)Creates a new abstract operator with the given name wrapping the given user function.DualInputOperator(UserCodeWrapper<FT> stub, BinaryOperatorInformation<IN1,IN2,OUT> operatorInfo, int[] keyPositions1, int[] keyPositions2, String name)Creates a new abstract dual-input operator with the given name wrapping the given user function.DualInputOperator(UserCodeWrapper<FT> stub, BinaryOperatorInformation<IN1,IN2,OUT> operatorInfo, String name)Creates a new abstract dual-input Pact with the given name wrapping the given user function.GenericDataSinkBase(UserCodeWrapper<? extends OutputFormat<IN>> f, UnaryOperatorInformation<IN,Nothing> operatorInfo, String name)Creates a GenericDataSink with the providedOutputFormatimplementation and the given name.SingleInputOperator(UserCodeWrapper<FT> stub, UnaryOperatorInformation<IN,OUT> operatorInfo, int[] keyPositions, String name)Creates a new abstract single-input operator with the given name wrapping the given user function.SingleInputOperator(UserCodeWrapper<FT> stub, UnaryOperatorInformation<IN,OUT> operatorInfo, String name)Creates a new abstract single-input operator with the given name wrapping the given user function. -
Uses of UserCodeWrapper in org.apache.flink.api.common.operators.base
Methods in org.apache.flink.api.common.operators.base that return UserCodeWrapper Modifier and Type Method Description UserCodeWrapper<?>BulkIterationBase.PartialSolutionPlaceHolder. getUserCodeWrapper()UserCodeWrapper<?>DeltaIterationBase.SolutionSetPlaceHolder. getUserCodeWrapper()UserCodeWrapper<?>DeltaIterationBase.WorksetPlaceHolder. getUserCodeWrapper() -
Uses of UserCodeWrapper in org.apache.flink.api.common.operators.util
Classes in org.apache.flink.api.common.operators.util that implement UserCodeWrapper Modifier and Type Class Description classUserCodeClassWrapper<T>This holds a class containing user defined code.classUserCodeObjectWrapper<T>This holds an actual object containing user defined code.
-