38
38
*
39
39
* <p>By default there are adapters for {@link CompletableFuture}, RxJava 1, and
40
40
* also for a any Reactive Streams {@link Publisher}. Additional adapters can be
41
- * registered via {@link #registerFluxAdapter) and {@link #registerMonoAdapter}.
41
+ * registered via {@link #registerFluxAdapter} and {@link #registerMonoAdapter}.
42
42
*
43
43
* @author Rossen Stoyanchev
44
44
* @since 5.0
@@ -76,9 +76,9 @@ public ReactiveAdapterRegistry() {
76
76
77
77
78
78
/**
79
- * Register an adapter for adapting to and from a {@link Mono}. The provided
80
- * functions can assume that input will never be {@code null} and also that
81
- * any {@link Optional} wrapper is unwrapped.
79
+ * Register an adapter for adapting to and from a {@link Mono}.
80
+ * <p>The provided functions can assume that input will never be {@code null}
81
+ * and also that any {@link Optional} wrapper is unwrapped.
82
82
*/
83
83
public void registerMonoAdapter (Class <?> adapteeType , Function <Object , Mono <?>> toAdapter ,
84
84
Function <Mono <?>, Object > fromAdapter , ReactiveAdapter .Descriptor descriptor ) {
@@ -87,9 +87,9 @@ public void registerMonoAdapter(Class<?> adapteeType, Function<Object, Mono<?>>
87
87
}
88
88
89
89
/**
90
- * Register an adapter for adapting to and from a {@link Flux}. The provided
91
- * functions can assume that input will never be {@code null} and also that
92
- * any {@link Optional} wrapper is unwrapped.
90
+ * Register an adapter for adapting to and from a {@link Flux}.
91
+ * <p>The provided functions can assume that input will never be {@code null}
92
+ * and also that any {@link Optional} wrapper is unwrapped.
93
93
*/
94
94
public void registerFluxAdapter (Class <?> adapteeType , Function <Object , Flux <?>> toAdapter ,
95
95
Function <Flux <?>, Object > fromAdapter ) {
0 commit comments