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