Class IntegrationHandlerResultHandler

java.lang.Object
org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
All Implemented Interfaces:
org.springframework.core.Ordered, org.springframework.web.reactive.HandlerResultHandler

public class IntegrationHandlerResultHandler
extends java.lang.Object
implements org.springframework.web.reactive.HandlerResultHandler, org.springframework.core.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
See Also:
WebFluxInboundEndpoint
  • Field Summary

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Constructor Summary

    Constructors 
    Constructor Description
    IntegrationHandlerResultHandler()  
  • Method Summary

    Modifier and Type Method Description
    int getOrder()  
    reactor.core.publisher.Mono<java.lang.Void> handleResult​(org.springframework.web.server.ServerWebExchange exchange, org.springframework.web.reactive.HandlerResult result)  
    boolean supports​(org.springframework.web.reactive.HandlerResult result)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • supports

      public boolean supports​(org.springframework.web.reactive.HandlerResult result)
      Specified by:
      supports in interface org.springframework.web.reactive.HandlerResultHandler
    • handleResult

      public reactor.core.publisher.Mono<java.lang.Void> handleResult​(org.springframework.web.server.ServerWebExchange exchange, org.springframework.web.reactive.HandlerResult result)
      Specified by:
      handleResult in interface org.springframework.web.reactive.HandlerResultHandler
    • getOrder

      public int getOrder()
      Specified by:
      getOrder in interface org.springframework.core.Ordered