Uses of Interface
io.debezium.jdbc.JdbcConnection.ConnectionFactory
-
Packages that use JdbcConnection.ConnectionFactory Package Description io.debezium.jdbc -
-
Uses of JdbcConnection.ConnectionFactory in io.debezium.jdbc
Classes in io.debezium.jdbc that implement JdbcConnection.ConnectionFactory Modifier and Type Class Description private classJdbcConnection.ConnectionFactoryDecoratorFields in io.debezium.jdbc declared as JdbcConnection.ConnectionFactory Modifier and Type Field Description private JdbcConnection.ConnectionFactoryJdbcConnection.ConnectionFactoryDecorator. customConnectionFactoryprivate JdbcConnection.ConnectionFactoryJdbcConnection.ConnectionFactoryDecorator. defaultConnectionFactoryprivate JdbcConnection.ConnectionFactoryJdbcConnection. factoryMethods in io.debezium.jdbc that return JdbcConnection.ConnectionFactory Modifier and Type Method Description static JdbcConnection.ConnectionFactoryJdbcConnection. patternBasedFactory(String urlPattern, Field... variables)Create aJdbcConnection.ConnectionFactorythat replaces variables in the supplied URL pattern.static JdbcConnection.ConnectionFactoryJdbcConnection. patternBasedFactory(String urlPattern, String driverClassName, ClassLoader classloader, Field... variables)Create aJdbcConnection.ConnectionFactorythat uses the specific JDBC driver class loaded with the given class loader, and obtains the connection URL by replacing the following variables in the URL pattern:${hostname}${port}${dbname}${username}${password}Constructors in io.debezium.jdbc with parameters of type JdbcConnection.ConnectionFactory Constructor Description ConnectionFactoryDecorator(JdbcConnection.ConnectionFactory connectionFactory, Supplier<ClassLoader> classLoaderSupplier)JdbcConnection(Configuration config, JdbcConnection.ConnectionFactory connectionFactory)Create a new instance with the given configuration and connection factory.JdbcConnection(Configuration config, JdbcConnection.ConnectionFactory connectionFactory, JdbcConnection.Operations initialOperations)Create a new instance with the given configuration and connection factory, and specify the operations that should be run against each newly-established connection.JdbcConnection(Configuration config, JdbcConnection.ConnectionFactory connectionFactory, JdbcConnection.Operations initialOperations, Consumer<Configuration.Builder> adapter)Create a new instance with the given configuration and connection factory, and specify the operations that should be run against each newly-established connection.JdbcConnection(Configuration config, JdbcConnection.ConnectionFactory connectionFactory, JdbcConnection.Operations initialOperations, Consumer<Configuration.Builder> adapter, Supplier<ClassLoader> classLoaderSupplier)Create a new instance with the given configuration and connection factory, and specify the operations that should be run against each newly-established connection.JdbcConnection(Configuration config, JdbcConnection.ConnectionFactory connectionFactory, Supplier<ClassLoader> classLoaderSupplier)Create a new instance with the given configuration and connection factory.
-