Uses of Interface
org.jdbi.v3.core.HandleConsumer
-
Packages that use HandleConsumer Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.async org.jdbi.v3.sqlobject SQL Objects -
-
Uses of HandleConsumer in org.jdbi.v3.core
Methods in org.jdbi.v3.core with parameters of type HandleConsumer Modifier and Type Method Description <X extends java.lang.Exception>
voidJdbi. useHandle(HandleConsumer<X> consumer)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients.<X extends java.lang.Exception>
voidHandle. useTransaction(HandleConsumer<X> consumer)Executescallbackin a transaction.<X extends java.lang.Exception>
voidHandle. useTransaction(TransactionIsolationLevel level, HandleConsumer<X> consumer)Executescallbackin a transaction.<X extends java.lang.Exception>
voidJdbi. useTransaction(HandleConsumer<X> callback)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients.<X extends java.lang.Exception>
voidJdbi. useTransaction(TransactionIsolationLevel level, HandleConsumer<X> callback)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients. -
Uses of HandleConsumer in org.jdbi.v3.core.async
Methods in org.jdbi.v3.core.async with parameters of type HandleConsumer Modifier and Type Method Description <X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>AbstractJdbiExecutor. useHandle(HandleConsumer<X> consumer)<X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>JdbiExecutor. useHandle(HandleConsumer<X> consumer)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients.<X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>AbstractJdbiExecutor. useTransaction(HandleConsumer<X> callback)<X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>AbstractJdbiExecutor. useTransaction(TransactionIsolationLevel level, HandleConsumer<X> callback)<X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>JdbiExecutor. useTransaction(HandleConsumer<X> callback)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients.<X extends java.lang.Exception>
java.util.concurrent.CompletionStage<java.lang.Void>JdbiExecutor. useTransaction(TransactionIsolationLevel level, HandleConsumer<X> callback)A convenience function which manages the lifecycle of a handle and yields it to a callback for use by clients. -
Uses of HandleConsumer in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject with parameters of type HandleConsumer Modifier and Type Method Description default <X extends java.lang.Exception>
voidSqlObject. useHandle(HandleConsumer<X> consumer)A convenience function which manages the lifecycle of the handle associated to this sql object, and yields it to a consumer for use by clients.
-