Uses of Interface
org.axonframework.messaging.core.interception.HandlerInterceptorRegistry
Packages that use HandlerInterceptorRegistry
Package
Description
Part of the Axon Extension module.
Part of the Axon Messaging module.
-
Uses of HandlerInterceptorRegistry in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return types with arguments of type HandlerInterceptorRegistryModifier and TypeMethodDescriptionInterceptorAutoConfiguration.handlerInterceptorEnhancer(Optional<List<MessageHandlerInterceptor<Message>>> interceptors, Optional<List<MessageHandlerInterceptor<CommandMessage>>> commandInterceptors, Optional<List<MessageHandlerInterceptor<EventMessage>>> eventInterceptors, Optional<List<MessageHandlerInterceptor<QueryMessage>>> queryInterceptors) Bean creation method for aDecoratorDefinitionthat registersMessage-specificMessageHandlerInterceptorswith theHandlerInterceptorRegistry.InterceptorAutoConfiguration.handlerInterceptorEnhancer(Optional<List<MessageHandlerInterceptor<Message>>> interceptors, Optional<List<MessageHandlerInterceptor<CommandMessage>>> commandInterceptors, Optional<List<MessageHandlerInterceptor<EventMessage>>> eventInterceptors, Optional<List<MessageHandlerInterceptor<QueryMessage>>> queryInterceptors) Bean creation method for aDecoratorDefinitionthat registersMessage-specificMessageHandlerInterceptorswith theHandlerInterceptorRegistry. -
Uses of HandlerInterceptorRegistry in org.axonframework.messaging.core.interception
Classes in org.axonframework.messaging.core.interception that implement HandlerInterceptorRegistryModifier and TypeClassDescriptionclassDefault implementation of theHandlerInterceptorRegistry, maintaining lists ofCommandMessage,EventMessage, andQueryMessage-specificMessageHandlerInterceptors.Methods in org.axonframework.messaging.core.interception that return HandlerInterceptorRegistryModifier and TypeMethodDescriptionDefaultHandlerInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super CommandMessage>> interceptorBuilder) DefaultHandlerInterceptorRegistry.registerCommandInterceptor(HandlerInterceptorFactory<? super CommandMessage> interceptorFactory) HandlerInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super CommandMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aCommandMessageMessageHandlerInterceptorfor all command handling infrastructure components.HandlerInterceptorRegistry.registerCommandInterceptor(HandlerInterceptorFactory<? super CommandMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor aCommandMessageMessageHandlerInterceptorfor all command handling infrastructure components.DefaultHandlerInterceptorRegistry.registerEventInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super EventMessage>> interceptorBuilder) DefaultHandlerInterceptorRegistry.registerEventInterceptor(HandlerInterceptorFactory<? super EventMessage> interceptorFactory) HandlerInterceptorRegistry.registerEventInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super EventMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aEventMessageMessageHandlerInterceptorfor all event handling infrastructure components.HandlerInterceptorRegistry.registerEventInterceptor(HandlerInterceptorFactory<? super EventMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor aEventMessageMessageHandlerInterceptorfor all event handling infrastructure components.DefaultHandlerInterceptorRegistry.registerInterceptor(ComponentBuilder<MessageHandlerInterceptor<Message>> interceptorBuilder) DefaultHandlerInterceptorRegistry.registerInterceptor(HandlerInterceptorFactory<Message> interceptorFactory) HandlerInterceptorRegistry.registerInterceptor(ComponentBuilder<MessageHandlerInterceptor<Message>> interceptorBuilder) Registers the giveninterceptorBuilderconstructing a genericMessageMessageHandlerInterceptorfor all handling infrastructure components.HandlerInterceptorRegistry.registerInterceptor(HandlerInterceptorFactory<Message> interceptorFactory) Registers the given component-awareinterceptorFactoryconstructing a genericMessageMessageHandlerInterceptorfor all handling infrastructure components.DefaultHandlerInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super QueryMessage>> interceptorBuilder) DefaultHandlerInterceptorRegistry.registerQueryInterceptor(HandlerInterceptorFactory<? super QueryMessage> interceptorFactory) HandlerInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super QueryMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aQueryMessageMessageHandlerInterceptorfor all query handling infrastructure componentsHandlerInterceptorRegistry.registerQueryInterceptor(HandlerInterceptorFactory<? super QueryMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor aQueryMessageMessageHandlerInterceptorfor all query handling infrastructure components.