Class WriteFormat<IN>
- java.lang.Object
-
- org.apache.flink.streaming.api.functions.sink.WriteFormat<IN>
-
- Type Parameters:
IN- Input tuple type
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
WriteFormatAsCsv,WriteFormatAsText
@PublicEvolving @Deprecated public abstract class WriteFormat<IN> extends Object implements Serializable
Deprecated.Please use theStreamingFileSinkfor writing to files from a streaming program.Abstract class for formatting the output of the writeAsText and writeAsCsv functions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WriteFormat()Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description protected abstract voidwrite(String path, ArrayList<IN> tupleList)Deprecated.Writes the contents of tupleList to the file specified by path.
-