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>)