Class OutputFileConfig
- java.lang.Object
-
- org.apache.flink.streaming.api.functions.sink.filesystem.OutputFileConfig
-
- All Implemented Interfaces:
Serializable
public class OutputFileConfig extends Object implements Serializable
Part file name configuration. This allow to define a prefix and a suffix to the part file name.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOutputFileConfig.OutputFileConfigBuilderA builder to create the part file configuration.
-
Constructor Summary
Constructors Constructor Description OutputFileConfig(String partPrefix, String partSuffix)Initiates thePartFileConfigwith values passed as parameters.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OutputFileConfig.OutputFileConfigBuilderbuilder()StringgetPartPrefix()The prefix for the part name.StringgetPartSuffix()The suffix for the part name.
-
-
-
Method Detail
-
getPartPrefix
public String getPartPrefix()
The prefix for the part name.
-
getPartSuffix
public String getPartSuffix()
The suffix for the part name.
-
builder
public static OutputFileConfig.OutputFileConfigBuilder builder()
-
-