Class InterceptorChain<B,R>

java.lang.Object
io.micronaut.aop.chain.InterceptorChain<B,R>
Type Parameters:
B - The declaring type
R - The result of the method call
All Implemented Interfaces:
InvocationContext<B,R>, AnnotationMetadata, AnnotationMetadataDelegate, AnnotationMetadataProvider, AnnotationSource, AttributeHolder, MutableAttributeHolder, Executable<B,R>
Direct Known Subclasses:
MethodInterceptorChain

@Internal public class InterceptorChain<B,R> extends Object implements InvocationContext<B,R>
An internal representation of the Interceptor chain. This class implements InvocationContext and is consumed by the framework itself and should not be used directly in application code.
Since:
1.0
Author:
Graeme Rocher