DomainEventFunctionFilter
open class DomainEventFunctionFilter(serviceProvider: ServiceProvider) : ExchangeFilter<DomainEventExchange<*>>
Filter for processing domain events through registered event functions.
This filter is applied to domain event exchanges and is responsible for invoking the appropriate event handler functions. It sets up the service provider context and executes the event function before continuing the filter chain.
See also
Inheritors
Functions
Link copied to clipboard
open override fun filter(exchange: DomainEventExchange<*>, next: FilterChain<DomainEventExchange<*>>): Mono<Void>
Filters the domain event exchange by invoking the registered event function.