Class ReactorNetty2HttpHandlerAdapter

java.lang.Object
org.springframework.http.server.reactive.ReactorNetty2HttpHandlerAdapter
All Implemented Interfaces:
BiFunction<reactor.netty5.http.server.HttpServerRequest,reactor.netty5.http.server.HttpServerResponse,reactor.core.publisher.Mono<Void>>

@Deprecated(since="6.2.18", forRemoval=true) public class ReactorNetty2HttpHandlerAdapter extends Object implements BiFunction<reactor.netty5.http.server.HttpServerRequest,reactor.netty5.http.server.HttpServerResponse,reactor.core.publisher.Mono<Void>>
Deprecated, for removal: This API element is subject to removal in a future version.
as of 6.2.18 with no replacement
Adapt HttpHandler to the Reactor Netty 5 channel handling function.

This class is based on ReactorHttpHandlerAdapter.

Since:
6.0
Author:
Violeta Georgieva
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<Void>
    apply(reactor.netty5.http.server.HttpServerRequest reactorRequest, reactor.netty5.http.server.HttpServerResponse reactorResponse)
    Deprecated, for removal: This API element is subject to removal in a future version.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.function.BiFunction

    andThen
  • Constructor Details

    • ReactorNetty2HttpHandlerAdapter

      public ReactorNetty2HttpHandlerAdapter(HttpHandler httpHandler)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • apply

      public reactor.core.publisher.Mono<Void> apply(reactor.netty5.http.server.HttpServerRequest reactorRequest, reactor.netty5.http.server.HttpServerResponse reactorResponse)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      apply in interface BiFunction<reactor.netty5.http.server.HttpServerRequest,reactor.netty5.http.server.HttpServerResponse,reactor.core.publisher.Mono<Void>>