Uses of Interface
org.jdbi.v3.core.extension.ExtensionConsumer
-
Packages that use ExtensionConsumer Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.async -
-
Uses of ExtensionConsumer in org.jdbi.v3.core
Methods in org.jdbi.v3.core with parameters of type ExtensionConsumer Modifier and Type Method Description <E,X extends java.lang.Exception>
voidJdbi. useExtension(java.lang.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
Methods in org.jdbi.v3.core.async with parameters of type ExtensionConsumer Modifier and Type Method Description <E,X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>AbstractJdbiExecutor. useExtension(java.lang.Class<E> extensionType, ExtensionConsumer<E,X> callback)<E,X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>JdbiExecutor. useExtension(java.lang.Class<E> extensionType, ExtensionConsumer<E,X> callback)A convenience method which opens an extension of the given type, and yields it to a callback.
-