AbstractNotifierFilter

Abstract base class for filters that notify wait strategies about command processing completion. These filters intercept message processing pipelines and send notifications to waiting clients when specific processing stages are reached.

Parameters

T

The type of message exchange being filtered.

M

The type of message in the exchange.

processingStage

The command stage this filter notifies about.

commandWaitNotifier

The notifier used to send wait signals.

Inheritors

Constructors

Link copied to clipboard
constructor(processingStage: CommandStage, commandWaitNotifier: CommandWaitNotifier)

Functions

Link copied to clipboard
open override fun filter(exchange: T, next: FilterChain<T>): Mono<Void>

Processes the message exchange and optionally calls the next filter in the chain.