Package org.apache.flink.table.sources
Class CsvAppendTableSourceFactory
- java.lang.Object
-
- org.apache.flink.table.sources.CsvTableSourceFactoryBase
-
- org.apache.flink.table.sources.CsvAppendTableSourceFactory
-
- All Implemented Interfaces:
StreamTableSourceFactory<org.apache.flink.types.Row>,org.apache.flink.table.legacy.factories.TableFactory,org.apache.flink.table.legacy.factories.TableSourceFactory<org.apache.flink.types.Row>
@Internal public class CsvAppendTableSourceFactory extends CsvTableSourceFactoryBase implements StreamTableSourceFactory<org.apache.flink.types.Row>
Deprecated.The legacy CSV connector has been replaced byFileSource. It is kept only to support tests for the legacy connector stack.Factory for creating configured instances ofCsvTableSourcein a stream environment.
-
-
Constructor Summary
Constructors Constructor Description CsvAppendTableSourceFactory()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StreamTableSource<org.apache.flink.types.Row>createStreamTableSource(Map<String,String> properties)Deprecated.Creates and configures aStreamTableSourceusing the given properties.Map<String,String>requiredContext()Deprecated.-
Methods inherited from class org.apache.flink.table.sources.CsvTableSourceFactoryBase
createTableSource, getFieldLogicalTypes, 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.StreamTableSourceFactory
createTableSource
-
-
-
-
Method Detail
-
requiredContext
public Map<String,String> requiredContext()
Deprecated.- Specified by:
requiredContextin interfaceorg.apache.flink.table.legacy.factories.TableFactory- Overrides:
requiredContextin classCsvTableSourceFactoryBase
-
createStreamTableSource
public StreamTableSource<org.apache.flink.types.Row> createStreamTableSource(Map<String,String> properties)
Deprecated.Description copied from interface:StreamTableSourceFactoryCreates and configures aStreamTableSourceusing the given properties.- Specified by:
createStreamTableSourcein interfaceStreamTableSourceFactory<org.apache.flink.types.Row>- Parameters:
properties- normalized properties describing a stream table source.- Returns:
- the configured stream table source.
-
-