SimpleFilterChain

open class SimpleFilterChain<T>(current: Filter<T>, next: FilterChain<T>) : AbstractFilterChain<T>

A simple implementation of AbstractFilterChain.

This class provides a basic filter chain that executes filters in sequence. It can be extended for custom behavior if needed.

Parameters

current

the current Filter to execute

next

the next FilterChain in the sequence

Type Parameters

T

the type of context being processed

Constructors

Link copied to clipboard
constructor(current: Filter<T>, next: FilterChain<T>)

Properties

Link copied to clipboard

the current Filter to execute

Link copied to clipboard

the next FilterChain in the sequence

Functions

Link copied to clipboard
open override fun filter(context: T): Mono<Void>

Executes the current filter and delegates to the next chain.