Package org.axonframework.config
Interface EventProcessingConfigurer.DeadLetteringInvokerConfiguration
- All Superinterfaces:
BiFunction<Configuration,DeadLetteringEventHandlerInvoker.Builder, DeadLetteringEventHandlerInvoker.Builder>
- Enclosing interface:
EventProcessingConfigurer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface EventProcessingConfigurer.DeadLetteringInvokerConfiguration
extends BiFunction<Configuration,DeadLetteringEventHandlerInvoker.Builder,DeadLetteringEventHandlerInvoker.Builder>
Contract defining
DeadLetteringEventHandlerInvoker.Builder based configuration when constructing a
DeadLetteringEventHandlerInvoker.-
Method Summary
Modifier and TypeMethodDescriptionReturns a configuration that applies the givenotherconfiguration after applyingthis.noOp()AEventProcessingConfigurer.DeadLetteringInvokerConfigurationwhich does not add any configuration.Methods inherited from interface java.util.function.BiFunction
andThen, apply
-
Method Details
-
andThen
default EventProcessingConfigurer.DeadLetteringInvokerConfiguration andThen(EventProcessingConfigurer.DeadLetteringInvokerConfiguration other) Returns a configuration that applies the givenotherconfiguration after applyingthis. Any configuration set by theotherwill override changes bythisinstance.- Parameters:
other- The configuration to apply after applying this.- Returns:
- A configuration that applies both this and then the other configuration.
-
noOp
AEventProcessingConfigurer.DeadLetteringInvokerConfigurationwhich does not add any configuration.- Returns:
- A
EventProcessingConfigurer.DeadLetteringInvokerConfigurationwhich does not add any configuration.
-