T
- type of records that the factory producesDynamicTableSourceFactory
. The new
interface creates instances of DynamicTableSource
. See FLIP-95 for more information.@Deprecated @PublicEvolving public interface StreamTableSourceFactory<T> extends TableSourceFactory<T>
TableSourceFactory
for more information.TableSourceFactory.Context
Modifier and Type | Method and Description |
---|---|
default StreamTableSource<T> |
createStreamTableSource(Map<String,String> properties)
Deprecated.
Context contains more information, and already contains table schema too.
Please use TableSourceFactory.createTableSource(Context) instead. |
default TableSource<T> |
createTableSource(Map<String,String> properties)
Deprecated.
Only create a stream table source.
|
createTableSource, createTableSource
requiredContext, supportedProperties
@Deprecated default StreamTableSource<T> createStreamTableSource(Map<String,String> properties)
Context
contains more information, and already contains table schema too.
Please use TableSourceFactory.createTableSource(Context)
instead.StreamTableSource
using the given properties.properties
- normalized properties describing a stream table source.default TableSource<T> createTableSource(Map<String,String> properties)
createTableSource
in interface TableSourceFactory<T>
properties
- normalized properties describing a table source.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.