Uses of Class
org.axonframework.messaging.core.configuration.MessagingConfigurer
Packages that use MessagingConfigurer
Package
Description
Part of the Axon Eventsourcing module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Modelling module.
-
Uses of MessagingConfigurer in org.axonframework.eventsourcing.configuration
Method parameters in org.axonframework.eventsourcing.configuration with type arguments of type MessagingConfigurerModifier and TypeMethodDescriptionEventSourcingConfigurer.messaging(Consumer<MessagingConfigurer> configurerTask) Delegates the givenconfigurerTaskto theMessagingConfigurerthisEventSourcingConfigurerdelegates. -
Uses of MessagingConfigurer in org.axonframework.messaging.core.configuration
Methods in org.axonframework.messaging.core.configuration that return MessagingConfigurerModifier and TypeMethodDescriptionMessagingConfigurer.componentRegistry(Consumer<ComponentRegistry> componentRegistrar) static MessagingConfigurerMessagingConfigurer.create()Build a defaultMessagingConfigurerinstance with several messaging defaults, as well as methods to register (e.g.) acommand bus.static MessagingConfigurerMessagingConfigurer.enhance(ApplicationConfigurer applicationConfigurer) Creates a MessagingConfigurer that enhances an existingApplicationConfigurer.MessagingConfigurer.eventProcessing(Consumer<EventProcessingConfigurer> configurerTask) Delegates givenconfigurerTaskto theEventProcessingConfigurer.MessagingConfigurer.lifecycleRegistry(Consumer<LifecycleRegistry> lifecycleRegistrar) MessagingConfigurer.registerCommandBus(ComponentBuilder<CommandBus> commandBusBuilder) Registers the givenCommandBusfactory in thisConfigurer.MessagingConfigurer.registerCommandDispatchInterceptor(ComponentBuilder<MessageDispatchInterceptor<? super CommandMessage>> interceptorBuilder) MessagingConfigurer.registerCommandHandlerInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super CommandMessage>> interceptorBuilder) MessagingConfigurer.registerCommandHandlingModule(ModuleBuilder<CommandHandlingModule> moduleBuilder) Registers the givenbuilderfor aCommandHandlingModuleto use in this configuration.MessagingConfigurer.registerCommandMonitor(ComponentBuilder<MessageMonitor<? super CommandMessage>> monitorBuilder) Registers acommandMessageMonitorbuilder for all command-specific infrastructure components component in this configuration.MessagingConfigurer.registerCommandMonitor(MessageMonitorFactory<? super CommandMessage> monitorFactory) Registers amessage monitor factoryforcommand-specificinfrastructure components in this configuration.MessagingConfigurer.registerCorrelationDataProvider(ComponentBuilder<CorrelationDataProvider> providerBuilder) Registers the givenCorrelationDataProviderfactory in thisproviderBuilder.MessagingConfigurer.registerDispatchInterceptor(ComponentBuilder<MessageDispatchInterceptor<Message>> interceptorBuilder) MessagingConfigurer.registerEventDispatchInterceptor(ComponentBuilder<MessageDispatchInterceptor<? super EventMessage>> interceptorBuilder) MessagingConfigurer.registerEventHandlerInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super EventMessage>> interceptorBuilder) MessagingConfigurer.registerEventMonitor(ComponentBuilder<MessageMonitor<? super EventMessage>> monitorBuilder) Registers aeventMessageMonitorbuilder for all event-specific infrastructure components component in this configuration.MessagingConfigurer.registerEventMonitor(MessageMonitorFactory<? super EventMessage> monitorFactory) Registers amessage monitor factoryforevent-specificinfrastructure components in this configuration.MessagingConfigurer.registerEventSink(ComponentBuilder<EventSink> eventSinkBuilder) Registers the givenEventSinkfactory in thisConfigurer.MessagingConfigurer.registerMessageHandlerInterceptor(ComponentBuilder<MessageHandlerInterceptor<Message>> interceptorBuilder) MessagingConfigurer.registerMessageMonitor(ComponentBuilder<MessageMonitor<Message>> monitorBuilder) Registers aMessageMonitorbuilder for any type of messaging component in this configuration.MessagingConfigurer.registerMessageMonitor(MessageMonitorFactory<Message> monitorFactory) Registers amessage monitor factoryfor any type of messaging component in this configuration.MessagingConfigurer.registerMessageTypeResolver(ComponentBuilder<MessageTypeResolver> messageTypeResolverFactory) Registers the givenMessageTypeResolverfactory in thisConfigurer.MessagingConfigurer.registerParameterResolverFactory(ComponentBuilder<ParameterResolverFactory> parameterResolverFactoryBuilder) Registers the givenParameterResolverFactoryfactory in thisConfigurer.MessagingConfigurer.registerQueryBus(ComponentBuilder<QueryBus> queryBusBuilder) Registers the givenQueryBusfactory in thisConfigurer.MessagingConfigurer.registerQueryDispatchInterceptor(ComponentBuilder<MessageDispatchInterceptor<? super QueryMessage>> interceptorBuilder) MessagingConfigurer.registerQueryHandlerInterceptor(ComponentBuilder<MessageHandlerInterceptor<? super QueryMessage>> interceptorBuilder) MessagingConfigurer.registerQueryHandlingModule(ModuleBuilder<QueryHandlingModule> moduleBuilder) Registers the givenbuilderfor aQueryHandlingModuleto use in this configuration.MessagingConfigurer.registerQueryMonitor(ComponentBuilder<MessageMonitor<? super QueryMessage>> monitorBuilder) Registers a query monitor using the specifiedmonitorBuilder.MessagingConfigurer.registerQueryMonitor(MessageMonitorFactory<? super QueryMessage> monitorFactory) Registers amessage monitor factoryforquery-specificinfrastructure components in this configuration.MessagingConfigurer.registerSubscriptionQueryUpdateMonitor(ComponentBuilder<MessageMonitor<? super SubscriptionQueryUpdateMessage>> monitorBuilder) Registers a subscription query update monitor using the specifiedmonitorBuilder.MessagingConfigurer.registerSubscriptionQueryUpdateMonitor(MessageMonitorFactory<? super SubscriptionQueryUpdateMessage> monitorFactory) Registers amessage monitor factoryforsubscription-update-specificinfrastructure components in this configuration.MessagingConfigurer.registerUnitOfWorkFactory(ComponentBuilder<UnitOfWorkFactory> unitOfWorkFactoryBuilder) Registers the givenUnitOfWorkFactoryfactory in thisConfigurer. -
Uses of MessagingConfigurer in org.axonframework.messaging.eventhandling.configuration
Constructors in org.axonframework.messaging.eventhandling.configuration with parameters of type MessagingConfigurerModifierConstructorDescriptionConstructs a new event processing module with the given name. -
Uses of MessagingConfigurer in org.axonframework.modelling.configuration
Methods in org.axonframework.modelling.configuration with parameters of type MessagingConfigurerModifier and TypeMethodDescriptionstatic ModellingConfigurerModellingConfigurer.enhance(MessagingConfigurer messagingConfigurer) Creates a ModellingConfigurer that enhances an existingMessagingConfigurer.Method parameters in org.axonframework.modelling.configuration with type arguments of type MessagingConfigurerModifier and TypeMethodDescriptionModellingConfigurer.messaging(Consumer<MessagingConfigurer> configurerTask) Constructors in org.axonframework.modelling.configuration with parameters of type MessagingConfigurerModifierConstructorDescriptionModellingConfigurer(MessagingConfigurer delegate) Construct aModellingConfigurerusing the givendelegateto delegate all registry-specific operations to.