Uses of Interface
org.axonframework.extension.reactor.messaging.core.interception.ReactorDispatchInterceptorRegistry
Packages that use ReactorDispatchInterceptorRegistry
Package
Description
Part of the Axon Extension module.
Part of the Axon Extension module.
-
Uses of ReactorDispatchInterceptorRegistry in org.axonframework.extension.reactor.messaging.core.interception
Classes in org.axonframework.extension.reactor.messaging.core.interception that implement ReactorDispatchInterceptorRegistryModifier and TypeClassDescriptionclassDefault implementation of theReactorDispatchInterceptorRegistry, maintaining lists ofCommandMessage,EventMessage, andQueryMessage-specificReactorMessageDispatchInterceptors.Methods in org.axonframework.extension.reactor.messaging.core.interception that return ReactorDispatchInterceptorRegistryModifier and TypeMethodDescriptionDefaultReactorDispatchInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super CommandMessage>> interceptorBuilder) DefaultReactorDispatchInterceptorRegistry.registerCommandInterceptor(ReactorDispatchInterceptorFactory<? super CommandMessage> interceptorFactory) ReactorDispatchInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super CommandMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aCommandMessage-specificReactorMessageDispatchInterceptor.ReactorDispatchInterceptorRegistry.registerCommandInterceptor(ReactorDispatchInterceptorFactory<? super CommandMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor aCommandMessage-specificReactorMessageDispatchInterceptor.DefaultReactorDispatchInterceptorRegistry.registerEventInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super EventMessage>> interceptorBuilder) DefaultReactorDispatchInterceptorRegistry.registerEventInterceptor(ReactorDispatchInterceptorFactory<? super EventMessage> interceptorFactory) ReactorDispatchInterceptorRegistry.registerEventInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super EventMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor anEventMessage-specificReactorMessageDispatchInterceptor.ReactorDispatchInterceptorRegistry.registerEventInterceptor(ReactorDispatchInterceptorFactory<? super EventMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor anEventMessage-specificReactorMessageDispatchInterceptor.DefaultReactorDispatchInterceptorRegistry.registerInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<Message>> interceptorBuilder) DefaultReactorDispatchInterceptorRegistry.registerInterceptor(ReactorDispatchInterceptorFactory<Message> interceptorFactory) ReactorDispatchInterceptorRegistry.registerInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<Message>> interceptorBuilder) ReactorDispatchInterceptorRegistry.registerInterceptor(ReactorDispatchInterceptorFactory<Message> interceptorFactory) Registers the given component-awareinterceptorFactoryfor a genericMessageReactorMessageDispatchInterceptor.DefaultReactorDispatchInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super QueryMessage>> interceptorBuilder) DefaultReactorDispatchInterceptorRegistry.registerQueryInterceptor(ReactorDispatchInterceptorFactory<? super QueryMessage> interceptorFactory) ReactorDispatchInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super QueryMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aQueryMessage-specificReactorMessageDispatchInterceptor.ReactorDispatchInterceptorRegistry.registerQueryInterceptor(ReactorDispatchInterceptorFactory<? super QueryMessage> interceptorFactory) Registers the given component-awareinterceptorFactoryfor aQueryMessage-specificReactorMessageDispatchInterceptor. -
Uses of ReactorDispatchInterceptorRegistry in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return types with arguments of type ReactorDispatchInterceptorRegistryModifier and TypeMethodDescriptionReactorAutoConfiguration.reactorDispatchInterceptorEnhancer(Optional<List<ReactorMessageDispatchInterceptor<? super CommandMessage>>> commandInterceptors, Optional<List<ReactorMessageDispatchInterceptor<? super EventMessage>>> eventInterceptors, Optional<List<ReactorMessageDispatchInterceptor<? super QueryMessage>>> queryInterceptors) Creates aDecoratorDefinitionthat registers all discoveredReactorMessageDispatchInterceptorbeans on theReactorDispatchInterceptorRegistry.ReactorAutoConfiguration.reactorDispatchInterceptorEnhancer(Optional<List<ReactorMessageDispatchInterceptor<? super CommandMessage>>> commandInterceptors, Optional<List<ReactorMessageDispatchInterceptor<? super EventMessage>>> eventInterceptors, Optional<List<ReactorMessageDispatchInterceptor<? super QueryMessage>>> queryInterceptors) Creates aDecoratorDefinitionthat registers all discoveredReactorMessageDispatchInterceptorbeans on theReactorDispatchInterceptorRegistry.