Generated by
JDiff

Interface org.springframework.web.reactive.function.server.RouterFunction

Removed Methods
RouterFunction<T> andSame(RouterFunction<T>) Return a composed routing function that first invokes this function, and then invokes the {@code other} function (of the same type {@code T}) if this route had Mono#empty() no result.
 

Added Methods
RouterFunction<T> andNest(RequestPredicate, RouterFunction<T>) Return a composed routing function that routes to the given router function if this route does not match and the given request predicate applies.
RouterFunction<?> andOther(RouterFunction<?>) Return a composed routing function that first invokes this function, and then invokes the {@code other} function (of a different response type) if this route had Mono#empty() no result.
 

Changed Methods
RouterFunction<T> and(RouterFunction<T>) Change in return type from RouterFunction<?> to RouterFunction<T>.
Change in signature from RouterFunction<?> to RouterFunction<T>.
Return a composed routing function that first invokes this function, and then invokes the {@code other} function (of the same response type {@code T}) if this route had Mono#empty() no result.
RouterFunction<T> andRoute(RequestPredicate, HandlerFunction<T>) Change in return type from RouterFunction<?> to RouterFunction<T>.
Change in signature from (RequestPredicate, HandlerFunction<S>) to (RequestPredicate, HandlerFunction<T>).
Return a composed routing function that routes to the given handler function if this route does not match and the given request predicate applies.