Uses of Interface
org.jdbi.v3.core.extension.ExtensionConsumer
Package
Description
The 'core' package hosts the top level interface into jdbi core.
-
Uses of ExtensionConsumer in org.jdbi.v3.core
Modifier and TypeMethodDescription<E,
X extends Exception>
voidJdbi.useExtension
(Class<E> extensionType, ExtensionConsumer<E, X> callback) A convenience method which opens an extension of the given type, and yields it to a callback. -
Uses of ExtensionConsumer in org.jdbi.v3.core.async
Modifier and TypeMethodDescription<E,
X extends Exception>
CompletionStage<Void> AbstractJdbiExecutor.useExtension
(Class<E> extensionType, ExtensionConsumer<E, X> callback) <E,
X extends Exception>
CompletionStage<Void> JdbiExecutor.useExtension
(Class<E> extensionType, ExtensionConsumer<E, X> callback) A convenience method which opens an extension of the given type, and yields it to a callback.