Interface InputTypeConfigurable
-
@Public public interface InputTypeConfigurableOutputFormats 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 voidsetInputType(TypeInformation<?> type, ExecutionConfig executionConfig)Method that is called on anOutputFormatwhen it is passed to the DataSet's output method.
-
-
-
Method Detail
-
setInputType
void setInputType(TypeInformation<?> type, ExecutionConfig executionConfig)
Method that is called on anOutputFormatwhen 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.
-
-