Package org.apache.flink.table.sources
Class CsvBatchTableSourceFactory
- java.lang.Object
-
- org.apache.flink.table.sources.CsvTableSourceFactoryBase
-
- org.apache.flink.table.sources.CsvBatchTableSourceFactory
-
- 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 CsvBatchTableSourceFactory 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 batch environment.
-
-
Constructor Summary
Constructors Constructor Description CsvBatchTableSourceFactory()
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.-
Methods inherited from class org.apache.flink.table.sources.CsvTableSourceFactoryBase
createTableSource, getFieldLogicalTypes, requiredContext, 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
-
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.
-
-