Uses of Interface
org.springframework.web.reactive.function.server.HandlerFilterFunction
Packages that use 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
Methods in org.springframework.web.reactive.function.server that return HandlerFilterFunctionModifier and TypeMethodDescriptiondefault HandlerFilterFunction<T,R> HandlerFilterFunction.andThen(HandlerFilterFunction<T, T> after) Return a composed filter function that first applies this filter, and then applies theafterfilter.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.Methods in org.springframework.web.reactive.function.server with parameters of type HandlerFilterFunctionModifier and TypeMethodDescriptiondefault HandlerFilterFunction<T,R> HandlerFilterFunction.andThen(HandlerFilterFunction<T, T> after) Return a composed filter function that first applies this filter, and then applies theafterfilter.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.