T
- type of records that the factory consumesDynamicTableSinkFactory
. The new
interface creates instances of DynamicTableSink
and only works with the Blink
planner. See FLIP-95 for more information.@Deprecated @PublicEvolving public interface StreamTableSinkFactory<T> extends TableSinkFactory<T>
TableSinkFactory
for more information.TableSinkFactory.Context
Modifier and Type | Method and Description |
---|---|
default StreamTableSink<T> |
createStreamTableSink(Map<String,String> properties)
Deprecated.
Context contains more information, and already contains table schema too.
Please use TableSinkFactory.createTableSink(Context) instead. |
default TableSink<T> |
createTableSink(Map<String,String> properties)
Deprecated.
Only create stream table sink.
|
createTableSink, createTableSink
requiredContext, supportedProperties
@Deprecated default StreamTableSink<T> createStreamTableSink(Map<String,String> properties)
Context
contains more information, and already contains table schema too.
Please use TableSinkFactory.createTableSink(Context)
instead.StreamTableSink
using the given properties.properties
- normalized properties describing a table sink.default TableSink<T> createTableSink(Map<String,String> properties)
createTableSink
in interface TableSinkFactory<T>
properties
- normalized properties describing a table sink.Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.