Uses of Interface
org.jdbi.v3.core.extension.HandleSupplier
Packages that use HandleSupplier
Package
Description
The 'core' package hosts the top level interface into jdbi core.
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
Methods in org.jdbi.v3.core that return HandleSupplierModifier and TypeMethodDescriptionHandleScope.get()
Returns aHandleSupplier
that provides aHandle
in the given context.Methods in org.jdbi.v3.core with parameters of type HandleSupplierModifier and TypeMethodDescriptionvoid
HandleScope.set
(HandleSupplier handleSupplier) Associate aHandleSupplier
with the current scope. -
Uses of HandleSupplier in org.jdbi.v3.core.extension
Methods in org.jdbi.v3.core.extension with parameters of type HandleSupplierModifier and TypeMethodDescriptiondefault <E> E
ExtensionFactory.attach
(Class<E> extensionType, HandleSupplier handleSupplier) Attaches an extension type.ExtensionMetadata.createExtensionHandlerInvoker
(E target, Method method, HandleSupplier handleSupplier, ConfigRegistry config) Creates anExtensionMetadata.ExtensionHandlerInvoker
instance for a specific method.<E> Optional
<E> Extensions.findFor
(Class<E> extensionType, HandleSupplier handleSupplier) Create an extension instance if a factory accepts the extension type.ExtensionHandler.invoke
(HandleSupplier handleSupplier, Object target, Object... args) Gets invoked to return a value for the method that this handler was bound to. -
Uses of HandleSupplier in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject with parameters of type HandleSupplierModifier and TypeMethodDescriptionHandler.invoke
(Object target, Object[] args, HandleSupplier handleSupplier) Deprecated.Executes a SQL Object method, and returns the result.default Object
Handler.invoke
(HandleSupplier handleSupplier, Object target, Object... args) Deprecated.