Uses of Interface
org.springframework.web.reactive.function.server.HandlerFilterFunction
Package
Description
Provides the types that make up Spring's functional web framework for Reactive environments.
-
Uses of HandlerFilterFunction in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptiondefault HandlerFilterFunction<T,
R> HandlerFilterFunction.andThen
(HandlerFilterFunction<T, T> after) Return a composed filter function that first applies this filter, and then applies theafter
filter.static HandlerFilterFunction<?,
?> HandlerFilterFunction.ofRequestProcessor
(Function<ServerRequest, reactor.core.publisher.Mono<ServerRequest>> requestProcessor) Adapt the given request processor function to a filter function that only operates on theServerRequest
.static <T extends ServerResponse,
R extends ServerResponse>
HandlerFilterFunction<T,R> HandlerFilterFunction.ofResponseProcessor
(Function<T, reactor.core.publisher.Mono<R>> responseProcessor) Adapt the given response processor function to a filter function that only operates on theServerResponse
.Modifier and TypeMethodDescriptiondefault HandlerFilterFunction<T,
R> HandlerFilterFunction.andThen
(HandlerFilterFunction<T, T> after) Return a composed filter function that first applies this filter, and then applies theafter
filter.default <S extends ServerResponse>
RouterFunction<S>RouterFunction.filter
(HandlerFilterFunction<T, S> filterFunction) Filter all handler functions routed by this function with the given filter function.RouterFunctions.Builder.filter
(HandlerFilterFunction<ServerResponse, ServerResponse> filterFunction) Filters all routes created by this builder with the given filter function.