Uses of Interface
org.axonframework.messaging.annotation.MessageHandlerInterceptorMemberChain
Packages that use MessageHandlerInterceptorMemberChain
Package
Description
-
Uses of MessageHandlerInterceptorMemberChain in org.axonframework.messaging.annotation
Classes in org.axonframework.messaging.annotation that implement MessageHandlerInterceptorMemberChainModifier and TypeClassDescriptionclassAMessageHandlerInterceptorMemberChainimplementation that constructs a chain of instances of itself based on a giveniteratorofMessageHandlingMembers.classThis will implementMessageHandlerInterceptorMemberChainwith no more interceptors.Methods in org.axonframework.messaging.annotation that return MessageHandlerInterceptorMemberChainModifier and TypeMethodDescriptionAnnotatedHandlerInspector.chainedInterceptor(Class<?> type) Returns an Interceptor Chain of annotated interceptor methods defined on the giventype.static <T> MessageHandlerInterceptorMemberChain<T> NoMoreInterceptors.instance()Creates and returns a new instance -
Uses of MessageHandlerInterceptorMemberChain in org.axonframework.modelling.saga
Constructors in org.axonframework.modelling.saga with parameters of type MessageHandlerInterceptorMemberChainModifierConstructorDescriptionAnnotatedSaga(String sagaId, Set<AssociationValue> associationValues, T annotatedSaga, SagaModel<T> metaModel, MessageHandlerInterceptorMemberChain<T> chainedInterceptor) Creates an AnnotatedSaga instance to wrap the givenannotatedSaga, identifier with the givensagaIdand associated with the givenassociationValues. -
Uses of MessageHandlerInterceptorMemberChain in org.axonframework.modelling.saga.metamodel
Methods in org.axonframework.modelling.saga.metamodel that return MessageHandlerInterceptorMemberChainModifier and TypeMethodDescriptionAnnotationSagaMetaModelFactory.chainedInterceptor(Class<T> sagaType) default <T> MessageHandlerInterceptorMemberChain<T> SagaMetaModelFactory.chainedInterceptor(Class<T> sagaType) Returns an Interceptor Chain of annotated interceptor methods for the givensagaType. -
Uses of MessageHandlerInterceptorMemberChain in org.axonframework.modelling.saga.repository
Methods in org.axonframework.modelling.saga.repository that return MessageHandlerInterceptorMemberChainModifier and TypeMethodDescriptionprotected MessageHandlerInterceptorMemberChain<T> AnnotatedSagaRepository.Builder.buildChainedInterceptor()Instantiate theMessageHandlerInterceptorMemberChainof generic typeTas the Saga type to be stored.Methods in org.axonframework.modelling.saga.repository with parameters of type MessageHandlerInterceptorMemberChainModifier and TypeMethodDescriptionAnnotatedSagaRepository.Builder.interceptorMemberChain(MessageHandlerInterceptorMemberChain<T> interceptorMemberChain) Sets theMessageHandlerInterceptorMemberChainof generic typeT, describing the structure of the Saga thisSagaRepositoryimplementation will store.