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 ofCsvTableSource
in 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 aStreamTableSource
using 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:
requiredContext
in interfaceorg.apache.flink.table.legacy.factories.TableFactory
- Overrides:
requiredContext
in classCsvTableSourceFactoryBase
-
createStreamTableSource
public StreamTableSource<org.apache.flink.types.Row> createStreamTableSource(Map<String,String> properties)
Deprecated.Description copied from interface:StreamTableSourceFactory
Creates and configures aStreamTableSource
using the given properties.- Specified by:
createStreamTableSource
in interfaceStreamTableSourceFactory<org.apache.flink.types.Row>
- Parameters:
properties
- normalized properties describing a stream table source.- Returns:
- the configured stream table source.
-
-