Interface HandlerFunction<T extends ServerResponse>
- Type Parameters:
T
- the type of the response of the function
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a function that handles a request.
- Since:
- 5.0
- Author:
- Arjen Poutsma
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<T>
handle
(ServerRequest request) Handle the given request.
-
Method Details
-
handle
Handle the given request.- Parameters:
request
- the request to handle- Returns:
- the response
-