Filter

fun interface Filter<T>

Functional interface for implementing custom filter logic.

Uses generics to allow filtering with different types in various contexts.

Parameters

T

the context type processed by the filter

Inheritors

Functions

Link copied to clipboard
abstract fun filter(context: T, next: FilterChain<T>): Mono<Void>

Implements the filter logic.