Uses of Interface
org.jdbi.v3.core.extension.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
Modifier and TypeMethodDescriptionHandleScope.get()
Returns aHandleSupplier
that provides aHandle
in the given context.Modifier and TypeMethodDescriptionvoid
HandleScope.set
(HandleSupplier handleSupplier) Associate aHandleSupplier
with the current scope. -
Uses of HandleSupplier in org.jdbi.v3.core.extension
Modifier 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
Modifier 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.