Package org.jdbi.v3.core.interceptor
Interface JdbiInterceptionChain<T>
-
- Type Parameters:
T- Type of the transformation result.
- All Known Implementing Classes:
JdbiInterceptionChainHolder.ChainInstance
@Alpha public interface JdbiInterceptionChain<T>
An instance of an interception chain.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tnext()Called from anJdbiInterceptorto execute the next interceptor on the chain.
-
-
-
Method Detail
-
next
T next()
Called from anJdbiInterceptorto execute the next interceptor on the chain.- Returns:
- The final transformation result.
-
-