Uses of Interface
org.jdbi.v3.core.extension.HandleSupplier
Packages that use HandleSupplier
Package
Description
The
extension
classes allow you to extend Jdbi
's
functionality by declaring interface types that may attach to Handle
instances.SQL Objects
-
Uses of HandleSupplier in org.jdbi.v3.core.extension
Methods in org.jdbi.v3.core.extension with parameters of type HandleSupplierModifier and TypeMethodDescription<E> E
ExtensionFactory.attach
(Class<E> extensionType, HandleSupplier handleSupplier) Attaches an extension type.<E> Optional<E>
Extensions.findFor
(Class<E> extensionType, HandleSupplier handleSupplier) Create an extension instance if we have a factory that understands the extension type which has access to aHandle
through aHandleSupplier
. -
Uses of HandleSupplier in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject with parameters of type HandleSupplierModifier and TypeMethodDescription<E> E
SqlObjectFactory.attach
(Class<E> extensionType, HandleSupplier handleSupplier) Create a sql object of the specified type bound to this handle.Handler.invoke
(Object target, Object[] args, HandleSupplier handleSupplier) Executes a SQL Object method, and returns the result.