File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
spring-webflux/src/main/java/org/springframework/web/reactive/result/method Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
63
63
64
64
private ReactiveAdapterRegistry reactiveAdapterRegistry = ReactiveAdapterRegistry .getSharedInstance ();
65
65
66
+
66
67
/**
67
68
* Create an instance from a {@code HandlerMethod}.
68
69
*/
@@ -110,8 +111,8 @@ public ParameterNameDiscoverer getParameterNameDiscoverer() {
110
111
}
111
112
112
113
/**
113
- * Configure a reactive registry. This is needed for cases where the response is fully
114
- * handled within the controller in combination with an async void return value.
114
+ * Configure a reactive adapter registry. This is needed for cases where the response is
115
+ * fully handled within the controller in combination with an async void return value.
115
116
* <p>By default this is a {@link ReactiveAdapterRegistry} with default settings.
116
117
*/
117
118
public void setReactiveAdapterRegistry (ReactiveAdapterRegistry registry ) {
@@ -124,7 +125,7 @@ public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
124
125
* @param exchange the current exchange
125
126
* @param bindingContext the binding context to use
126
127
* @param providedArgs optional list of argument values to match by type
127
- * @return a Mono with a {@link HandlerResult}.
128
+ * @return a Mono with a {@link HandlerResult}
128
129
*/
129
130
public Mono <HandlerResult > invoke (
130
131
ServerWebExchange exchange , BindingContext bindingContext , Object ... providedArgs ) {
You can’t perform that action at this time.
0 commit comments