public class IntegrationHandlerResultHandler extends Object implements HandlerResultHandler, Ordered
HandlerResultHandler
implementation to handle the result of the
WebFluxInboundEndpoint
execution. Actually just return the
result.getReturnValue()
which essentially is expected Mono<Void>
.WebFluxInboundEndpoint
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor and Description |
---|
IntegrationHandlerResultHandler() |
Modifier and Type | Method and Description |
---|---|
int |
getOrder() |
reactor.core.publisher.Mono<Void> |
handleResult(ServerWebExchange exchange,
HandlerResult result) |
boolean |
supports(HandlerResult result) |
public boolean supports(HandlerResult result)
supports
in interface HandlerResultHandler
public reactor.core.publisher.Mono<Void> handleResult(ServerWebExchange exchange, HandlerResult result)
handleResult
in interface HandlerResultHandler