Class SimpleOutputFormatOperatorFactory<IN,OUT>
java.lang.Object
org.apache.flink.streaming.api.operators.AbstractStreamOperatorFactory<OUT>
org.apache.flink.streaming.api.operators.SimpleOperatorFactory<OUT>
org.apache.flink.streaming.api.operators.SimpleOutputFormatOperatorFactory<IN,OUT>
- Type Parameters:
IN- The input type of the operator.
- All Implemented Interfaces:
Serializable,OutputFormatOperatorFactory<IN,,OUT> StreamOperatorFactory<OUT>,ProcessingTimeServiceAware
@Internal
public class SimpleOutputFormatOperatorFactory<IN,OUT>
extends SimpleOperatorFactory<OUT>
implements OutputFormatOperatorFactory<IN,OUT>
A simple operator factory which create an operator containing an
OutputFormat.- See Also:
-
Field Summary
Fields inherited from class org.apache.flink.streaming.api.operators.AbstractStreamOperatorFactory
chainingStrategy, processingTimeService -
Constructor Summary
ConstructorsConstructorDescriptionSimpleOutputFormatOperatorFactory(org.apache.flink.api.common.io.OutputFormat<IN> outputFormat, StreamOperator<OUT> operator) -
Method Summary
Methods inherited from class org.apache.flink.streaming.api.operators.SimpleOperatorFactory
createStreamOperator, getOperator, getOperatorAttributes, getStreamOperatorClass, isInputTypeConfigurable, isLegacySource, isOutputTypeConfigurable, isStreamSource, of, setInputType, setOutputTypeMethods inherited from class org.apache.flink.streaming.api.operators.AbstractStreamOperatorFactory
getChainingStrategy, getMailboxExecutor, setChainingStrategy, setMailboxExecutor, setProcessingTimeServiceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.flink.streaming.api.operators.StreamOperatorFactory
createStreamOperator, getChainingStrategy, getOperatorAttributes, getStreamOperatorClass, isInputTypeConfigurable, isLegacySource, isOutputTypeConfigurable, isStreamSource, setChainingStrategy, setInputType, setOutputType
-
Constructor Details
-
SimpleOutputFormatOperatorFactory
public SimpleOutputFormatOperatorFactory(org.apache.flink.api.common.io.OutputFormat<IN> outputFormat, StreamOperator<OUT> operator)
-
-
Method Details
-
getOutputFormat
- Specified by:
getOutputFormatin interfaceOutputFormatOperatorFactory<IN,OUT> - Returns:
- output format of the operator created by this factory.
-