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