Package org.jdbi.v3.core.interceptor
Class JdbiInterceptionChainHolder.ChainInstance
- java.lang.Object
-
- org.jdbi.v3.core.interceptor.JdbiInterceptionChainHolder.ChainInstance
-
- All Implemented Interfaces:
JdbiInterceptionChain<T>
- Enclosing class:
- JdbiInterceptionChainHolder<S,T>
final class JdbiInterceptionChainHolder.ChainInstance extends java.lang.Object implements JdbiInterceptionChain<T>
-
-
Constructor Summary
Constructors Constructor Description ChainInstance(S source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tnext()Called from anJdbiInterceptorto execute the next interceptor on the chain.
-
-
-
Field Detail
-
iterator
private final java.util.Iterator<JdbiInterceptor<S,T>> iterator
-
source
private final S source
-
-
Constructor Detail
-
ChainInstance
ChainInstance(S source)
-
-
Method Detail
-
next
public T next()
Description copied from interface:JdbiInterceptionChainCalled from anJdbiInterceptorto execute the next interceptor on the chain.- Specified by:
nextin interfaceJdbiInterceptionChain<T>- Returns:
- The final transformation result.
-
-