DomainEventFunctionRegistrar
class DomainEventFunctionRegistrar(actual: MessageFunctionRegistrar<MessageFunction<Any, DomainEventExchange<*>, Mono<*>>> = SimpleMessageFunctionRegistrar()) : AbstractEventFunctionRegistrar
Registrar for domain event processing functions.
This class extends AbstractEventFunctionRegistrar to provide domain event specific function registration. It resolves processors by analyzing their annotations and creating message functions for event handling.
Parameters
actual
The underlying message function registrar (default: SimpleMessageFunctionRegistrar)
See also
Constructors
Link copied to clipboard
constructor(actual: MessageFunctionRegistrar<MessageFunction<Any, DomainEventExchange<*>, Mono<*>>> = SimpleMessageFunctionRegistrar())
Functions
Link copied to clipboard
open override fun resolveProcessor(processor: Any): Set<MessageFunction<Any, DomainEventExchange<*>, Mono<*>>>
Resolves a processor into domain event message functions.