Interface OutputFormatOperatorFactory<IN,OUT>
-
- Type Parameters:
IN
- The input type of the operator.
- All Superinterfaces:
Serializable
,StreamOperatorFactory<OUT>
- All Known Implementing Classes:
SimpleOutputFormatOperatorFactory
@Internal public interface OutputFormatOperatorFactory<IN,OUT> extends StreamOperatorFactory<OUT>
Interface for operator factories which create the sink operator containing anOutputFormat
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputFormat<IN>
getOutputFormat()
-
Methods inherited from interface org.apache.flink.streaming.api.operators.StreamOperatorFactory
createStreamOperator, getChainingStrategy, getOperatorAttributes, getStreamOperatorClass, isInputTypeConfigurable, isLegacySource, isOutputTypeConfigurable, isStreamSource, setChainingStrategy, setInputType, setOutputType
-
-
-
-
Method Detail
-
getOutputFormat
OutputFormat<IN> getOutputFormat()
- Returns:
- output format of the operator created by this factory.
-
-