Interface InputTypeConfigurable
-
- All Known Implementing Classes:
OutputFormatSinkFunction
@Public public interface InputTypeConfigurable
OutputFormat
s can implement this interface to be configured with the data type they will operate on. The methodsetInputType(TypeInformation, ExecutionConfig)
will be called when the output format is used with an output API method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setInputType(TypeInformation<?> type, ExecutionConfig executionConfig)
Method that is called on anOutputFormat
when it is passed to the DataSet's output method.
-
-
-
Method Detail
-
setInputType
void setInputType(TypeInformation<?> type, ExecutionConfig executionConfig)
Method that is called on anOutputFormat
when it is passed to the DataSet's output method. May be used to configures the output format based on the data type.- Parameters:
type
- The data type of the input.executionConfig
- The execution config for this parallel execution.
-
-