File tree 1 file changed +2
-2
lines changed
reactor-core/src/main/java/reactor/core/publisher
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2035,7 +2035,7 @@ public static Flux<Integer> range(int start, int count) {
2035
2035
* @param mergedPublishers The {@link Publisher} of {@link Publisher} to switch on and mirror.
2036
2036
* @param <T> the produced type
2037
2037
*
2038
- * @return a {@link SinkManyAbstractBase } accepting publishers and producing T
2038
+ * @return a {@link Flux } accepting publishers and producing T
2039
2039
*/
2040
2040
public static <T > Flux <T > switchOnNext (Publisher <? extends Publisher <? extends T >> mergedPublishers ) {
2041
2041
return onAssembly (new FluxSwitchMapNoPrefetch <>(from (mergedPublishers ),
@@ -2056,7 +2056,7 @@ public static <T> Flux<T> switchOnNext(Publisher<? extends Publisher<? extends T
2056
2056
* @param prefetch the inner source request size
2057
2057
* @param <T> the produced type
2058
2058
*
2059
- * @return a {@link SinkManyAbstractBase } accepting publishers and producing T
2059
+ * @return a {@link Flux } accepting publishers and producing T
2060
2060
*
2061
2061
* @deprecated to be removed in 3.6.0 at the earliest. In 3.5.0, you should replace
2062
2062
* calls with prefetch=0 with calls to switchOnNext(mergedPublishers), as the default
You can’t perform that action at this time.
0 commit comments