Interface RouterFunctionVisitorAdapter
-
- All Superinterfaces:
org.springframework.web.reactive.function.server.RouterFunctions.Visitor
- All Known Implementing Classes:
ConsumingWebEndpointMappingAdapter
public interface RouterFunctionVisitorAdapter extends org.springframework.web.reactive.function.server.RouterFunctions.VisitorThe adapter interface forRouterFunctions.Visitor- Since:
- 1.0.0
- Author:
- Mercy
- See Also:
RouterFunctions.Visitor,RouterFunction,RouterFunctions
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidattributes(java.util.Map<java.lang.String,java.lang.Object> attributes)default voidendNested(org.springframework.web.reactive.function.server.RequestPredicate predicate)default voidresources(java.util.function.Function<org.springframework.web.reactive.function.server.ServerRequest,reactor.core.publisher.Mono<org.springframework.core.io.Resource>> lookupFunction)default voidroute(org.springframework.web.reactive.function.server.RequestPredicate predicate, org.springframework.web.reactive.function.server.HandlerFunction<?> handlerFunction)default voidstartNested(org.springframework.web.reactive.function.server.RequestPredicate predicate)default voidunknown(org.springframework.web.reactive.function.server.RouterFunction<?> routerFunction)
-
-
-
Method Detail
-
startNested
default void startNested(org.springframework.web.reactive.function.server.RequestPredicate predicate)
- Specified by:
startNestedin interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
endNested
default void endNested(org.springframework.web.reactive.function.server.RequestPredicate predicate)
- Specified by:
endNestedin interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
route
default void route(org.springframework.web.reactive.function.server.RequestPredicate predicate, org.springframework.web.reactive.function.server.HandlerFunction<?> handlerFunction)- Specified by:
routein interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
resources
default void resources(java.util.function.Function<org.springframework.web.reactive.function.server.ServerRequest,reactor.core.publisher.Mono<org.springframework.core.io.Resource>> lookupFunction)
- Specified by:
resourcesin interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
attributes
default void attributes(java.util.Map<java.lang.String,java.lang.Object> attributes)
Compatible with Spring Framework 5.3.x and earlier versions.
- Specified by:
attributesin interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
unknown
default void unknown(org.springframework.web.reactive.function.server.RouterFunction<?> routerFunction)
- Specified by:
unknownin interfaceorg.springframework.web.reactive.function.server.RouterFunctions.Visitor
-
-