public final class SocketDynamicTableFactory extends Object implements DynamicTableSourceFactory
SocketDynamicTableFactory
translates the catalog table to a table source.
Because the table source requires a decoding format, we are discovering the format using the
provided FactoryUtil
for convenience.
DynamicTableFactory.Context
Modifier and Type | Field and Description |
---|---|
static ConfigOption<Integer> |
BYTE_DELIMITER |
static ConfigOption<String> |
HOSTNAME |
static ConfigOption<Integer> |
PORT |
Constructor and Description |
---|
SocketDynamicTableFactory() |
Modifier and Type | Method and Description |
---|---|
DynamicTableSource |
createDynamicTableSource(DynamicTableFactory.Context context)
Creates a
DynamicTableSource instance from a CatalogTable and additional
context information. |
String |
factoryIdentifier()
Returns a unique identifier among same factory interfaces.
|
Set<ConfigOption<?>> |
optionalOptions()
Returns a set of
ConfigOption that an implementation of this factory consumes in
addition to Factory.requiredOptions() . |
Set<ConfigOption<?>> |
requiredOptions()
Returns a set of
ConfigOption that an implementation of this factory requires in
addition to Factory.optionalOptions() . |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forwardOptions
public static final ConfigOption<String> HOSTNAME
public static final ConfigOption<Integer> PORT
public static final ConfigOption<Integer> BYTE_DELIMITER
public String factoryIdentifier()
Factory
For consistency, an identifier should be declared as one lower case word (e.g. kafka
). If multiple factories exist for different versions, a version should be appended
using "-" (e.g. elasticsearch-7
).
factoryIdentifier
in interface Factory
public Set<ConfigOption<?>> requiredOptions()
Factory
ConfigOption
that an implementation of this factory requires in
addition to Factory.optionalOptions()
.
See the documentation of Factory
for more information.
requiredOptions
in interface Factory
public Set<ConfigOption<?>> optionalOptions()
Factory
ConfigOption
that an implementation of this factory consumes in
addition to Factory.requiredOptions()
.
See the documentation of Factory
for more information.
optionalOptions
in interface Factory
public DynamicTableSource createDynamicTableSource(DynamicTableFactory.Context context)
DynamicTableSourceFactory
DynamicTableSource
instance from a CatalogTable
and additional
context information.
An implementation should perform validation and the discovery of further (nested) factories in this method.
createDynamicTableSource
in interface DynamicTableSourceFactory
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.