Interface RewriteFunction<T,R>

Type Parameters:
T - the type of the request/response body (may be null when there is no body)
R - the type of element signaled by the Publisher
All Superinterfaces:
BiFunction<org.springframework.web.server.ServerWebExchange, T, org.reactivestreams.Publisher<R>>

public interface RewriteFunction<T,R> extends BiFunction<org.springframework.web.server.ServerWebExchange, T, org.reactivestreams.Publisher<R>>
This interface is BETA and may be subject to change in a future release.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.reactivestreams.Publisher<R>
    apply(org.springframework.web.server.ServerWebExchange exchange, @Nullable T body)
     

    Methods inherited from interface BiFunction

    andThen
  • Method Details

    • apply

      org.reactivestreams.Publisher<R> apply(org.springframework.web.server.ServerWebExchange exchange, @Nullable T body)
      Specified by:
      apply in interface BiFunction<org.springframework.web.server.ServerWebExchange, T, org.reactivestreams.Publisher<R>>