Class IntegrationHandlerResultHandler
java.lang.Object
org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
- All Implemented Interfaces:
Ordered
,HandlerResultHandler
public class IntegrationHandlerResultHandler
extends Object
implements HandlerResultHandler, Ordered
A
HandlerResultHandler
implementation to handle the result of the
WebFluxInboundEndpoint
execution. Actually just return the
result.getReturnValue()
which essentially is expected Mono<Void>
.- Since:
- 5.0
- Author:
- Artem Bilan
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getOrder()
reactor.core.publisher.Mono<Void>
handleResult
(ServerWebExchange exchange, HandlerResult result) boolean
supports
(HandlerResult result)
-
Constructor Details
-
IntegrationHandlerResultHandler
public IntegrationHandlerResultHandler()
-
-
Method Details
-
supports
- Specified by:
supports
in interfaceHandlerResultHandler
-
handleResult
public reactor.core.publisher.Mono<Void> handleResult(ServerWebExchange exchange, HandlerResult result) - Specified by:
handleResult
in interfaceHandlerResultHandler
-
getOrder
public int getOrder()
-