Uses of Interface
org.axonframework.extension.reactor.messaging.core.ReactorMessageDispatchInterceptor
Packages that use ReactorMessageDispatchInterceptor
Package
Description
Part of the Axon Extension module.
Part of the Axon Extension module.
Part of the Axon Extension module.
Part of the Axon Extension module.
Part of the Axon Extension module.
-
Uses of ReactorMessageDispatchInterceptor in org.axonframework.extension.reactor.messaging.commandhandling.gateway
Constructor parameters in org.axonframework.extension.reactor.messaging.commandhandling.gateway with type arguments of type ReactorMessageDispatchInterceptorModifierConstructorDescriptionDefaultReactorCommandGateway(CommandGateway commandGateway, MessageTypeResolver messageTypeResolver, List<ReactorMessageDispatchInterceptor<? super CommandMessage>> dispatchInterceptors) Instantiate aDefaultReactorCommandGateway. -
Uses of ReactorMessageDispatchInterceptor in org.axonframework.extension.reactor.messaging.core.interception
Methods in org.axonframework.extension.reactor.messaging.core.interception that return ReactorMessageDispatchInterceptorModifier and TypeMethodDescription@Nullable ReactorMessageDispatchInterceptor<? super M> ReactorDispatchInterceptorFactory.build(Configuration config, Class<?> componentType, @Nullable String componentName) Builds aReactorMessageDispatchInterceptorfor the specified component.Methods in org.axonframework.extension.reactor.messaging.core.interception that return types with arguments of type ReactorMessageDispatchInterceptorModifier and TypeMethodDescriptionDefaultReactorDispatchInterceptorRegistry.commandInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) ReactorDispatchInterceptorRegistry.commandInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) Returns the list ofReactorMessageDispatchInterceptorsregistered forCommandMessagesfor a specificcomponentTypeandcomponentName.DefaultReactorDispatchInterceptorRegistry.eventInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) ReactorDispatchInterceptorRegistry.eventInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) Returns the list ofReactorMessageDispatchInterceptorsregistered forEventMessagesfor a specificcomponentTypeandcomponentName.DefaultReactorDispatchInterceptorRegistry.queryInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) ReactorDispatchInterceptorRegistry.queryInterceptors(Configuration config, Class<?> componentType, @Nullable String componentName) Returns the list ofReactorMessageDispatchInterceptorsregistered forQueryMessagesfor a specificcomponentTypeandcomponentName.Method parameters in org.axonframework.extension.reactor.messaging.core.interception with type arguments of type ReactorMessageDispatchInterceptorModifier and TypeMethodDescriptionDefaultReactorDispatchInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super CommandMessage>> interceptorBuilder) ReactorDispatchInterceptorRegistry.registerCommandInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super CommandMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aCommandMessage-specificReactorMessageDispatchInterceptor.DefaultReactorDispatchInterceptorRegistry.registerEventInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super EventMessage>> interceptorBuilder) ReactorDispatchInterceptorRegistry.registerEventInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super EventMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor anEventMessage-specificReactorMessageDispatchInterceptor.DefaultReactorDispatchInterceptorRegistry.registerInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<Message>> interceptorBuilder) ReactorDispatchInterceptorRegistry.registerInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<Message>> interceptorBuilder) DefaultReactorDispatchInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super QueryMessage>> interceptorBuilder) ReactorDispatchInterceptorRegistry.registerQueryInterceptor(ComponentBuilder<ReactorMessageDispatchInterceptor<? super QueryMessage>> interceptorBuilder) Registers the giveninterceptorBuilderfor aQueryMessage-specificReactorMessageDispatchInterceptor. -
Uses of ReactorMessageDispatchInterceptor in org.axonframework.extension.reactor.messaging.eventhandling.gateway
Constructor parameters in org.axonframework.extension.reactor.messaging.eventhandling.gateway with type arguments of type ReactorMessageDispatchInterceptorModifierConstructorDescriptionDefaultReactorEventGateway(EventGateway eventGateway, MessageTypeResolver messageTypeResolver, List<ReactorMessageDispatchInterceptor<? super EventMessage>> dispatchInterceptors) Instantiate aDefaultReactorEventGateway. -
Uses of ReactorMessageDispatchInterceptor in org.axonframework.extension.reactor.messaging.queryhandling.gateway
Constructor parameters in org.axonframework.extension.reactor.messaging.queryhandling.gateway with type arguments of type ReactorMessageDispatchInterceptorModifierConstructorDescriptionDefaultReactorQueryGateway(QueryGateway queryGateway, MessageTypeResolver messageTypeResolver, List<ReactorMessageDispatchInterceptor<? super QueryMessage>> dispatchInterceptors) Instantiate aDefaultReactorQueryGateway. -
Uses of ReactorMessageDispatchInterceptor in org.axonframework.extension.springboot.autoconfig
Method parameters in org.axonframework.extension.springboot.autoconfig with type arguments of type ReactorMessageDispatchInterceptorModifier 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.