spring-framework / org.springframework.web.reactive / HandlerResultHandler

HandlerResultHandler

interface HandlerResultHandler

Process the HandlerResult, usually returned by an HandlerAdapter.

Author
Rossen Stoyanchev

Author
Sebastien Deleuze

Since
5.0

Functions

handleResult

abstract fun handleResult(exchange: ServerWebExchange, result: HandlerResult): Mono<Void>

Process the given result modifying response headers and/or writing data to the response.

supports

abstract fun supports(result: HandlerResult): Boolean

Whether this handler supports the given HandlerResult.