Uses of Interface
org.jdbi.v3.core.extension.ExtensionCallback
-
Packages that use ExtensionCallback Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.async -
-
Uses of ExtensionCallback in org.jdbi.v3.core
Methods in org.jdbi.v3.core with parameters of type ExtensionCallback Modifier and Type Method Description private <R,E,X extends java.lang.Exception>
RJdbi. callWithExtension(java.lang.Class<E> extensionType, ExtensionCallback<R,E,X> callback, HandleSupplier handleSupplier)<R,E,X extends java.lang.Exception>
RJdbi. withExtension(java.lang.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
Methods in org.jdbi.v3.core.async with parameters of type ExtensionCallback Modifier and Type Method Description <R,E,X extends java.lang.Exception>
java.util.concurrent.CompletionStage<R>AbstractJdbiExecutor. withExtension(java.lang.Class<E> extensionType, ExtensionCallback<R,E,X> callback)<R,E,X extends java.lang.Exception>
java.util.concurrent.CompletionStage<R>JdbiExecutor. withExtension(java.lang.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.
-