File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
reactor-core/src/main/java/reactor/core/publisher Expand file tree Collapse file tree 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) {
20352035 * @param mergedPublishers The {@link Publisher} of {@link Publisher} to switch on and mirror.
20362036 * @param <T> the produced type
20372037 *
2038- * @return a {@link SinkManyAbstractBase } accepting publishers and producing T
2038+ * @return a {@link Flux } accepting publishers and producing T
20392039 */
20402040 public static <T > Flux <T > switchOnNext (Publisher <? extends Publisher <? extends T >> mergedPublishers ) {
20412041 return onAssembly (new FluxSwitchMapNoPrefetch <>(from (mergedPublishers ),
@@ -2056,7 +2056,7 @@ public static <T> Flux<T> switchOnNext(Publisher<? extends Publisher<? extends T
20562056 * @param prefetch the inner source request size
20572057 * @param <T> the produced type
20582058 *
2059- * @return a {@link SinkManyAbstractBase } accepting publishers and producing T
2059+ * @return a {@link Flux } accepting publishers and producing T
20602060 *
20612061 * @deprecated to be removed in 3.6.0 at the earliest. In 3.5.0, you should replace
20622062 * calls with prefetch=0 with calls to switchOnNext(mergedPublishers), as the default
You can’t perform that action at this time.
0 commit comments