Package org.apache.flink.table.sinks
Class CsvAppendTableSinkFactory
- java.lang.Object
 - 
- org.apache.flink.table.sinks.CsvTableSinkFactoryBase
 - 
- org.apache.flink.table.sinks.CsvAppendTableSinkFactory
 
 
 
- 
- All Implemented Interfaces:
 StreamTableSinkFactory<org.apache.flink.types.Row>,org.apache.flink.table.legacy.factories.TableFactory,org.apache.flink.table.legacy.factories.TableSinkFactory<org.apache.flink.types.Row>
@Internal @Deprecated public class CsvAppendTableSinkFactory extends CsvTableSinkFactoryBase implements StreamTableSinkFactory<org.apache.flink.types.Row>
Deprecated.The legacy CSV connector has been replaced byFileSink. It is kept only to support tests for the legacy connector stack.Factory base for creating configured instances ofCsvTableSinkin a stream environment. 
- 
- 
Constructor Summary
Constructors Constructor Description CsvAppendTableSinkFactory()Deprecated. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StreamTableSink<org.apache.flink.types.Row>createStreamTableSink(Map<String,String> properties)Deprecated.Creates and configures aStreamTableSinkusing the given properties.Map<String,String>requiredContext()Deprecated.- 
Methods inherited from class org.apache.flink.table.sinks.CsvTableSinkFactoryBase
createTableSink, supportedProperties 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.flink.legacy.table.factories.StreamTableSinkFactory
createTableSink 
 - 
 
 - 
 
- 
- 
Method Detail
- 
requiredContext
public Map<String,String> requiredContext()
Deprecated.- Specified by:
 requiredContextin interfaceorg.apache.flink.table.legacy.factories.TableFactory- Overrides:
 requiredContextin classCsvTableSinkFactoryBase
 
- 
createStreamTableSink
public StreamTableSink<org.apache.flink.types.Row> createStreamTableSink(Map<String,String> properties)
Deprecated.Description copied from interface:StreamTableSinkFactoryCreates and configures aStreamTableSinkusing the given properties.- Specified by:
 createStreamTableSinkin interfaceStreamTableSinkFactory<org.apache.flink.types.Row>- Parameters:
 properties- normalized properties describing a table sink.- Returns:
 - the configured table sink.
 
 
 - 
 
 -