AbstractFilterChain
abstract class AbstractFilterChain<T>(val current: Filter<T>, val next: FilterChain<T>) : FilterChain<T>
Abstract base class for filter chains that delegates to a current filter and a next chain.
This class implements the FilterChain interface by calling the current filter's Filter.filter method with the context and the next chain.
Parameters
T
the type of context being processed