@@ -49,7 +49,7 @@ private FlowableTransformers() {
49
49
* <ul>
50
50
* <li>The operator starts with an open valve.</li>
51
51
* <li>If the other Publisher completes, the sequence terminates with an {@code IllegalStateException}.</li>
52
- * <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
52
+ * <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core. Scheduler Scheduler}.</li>
53
53
* <li>The operator is a pass-through for backpressure and uses an internal unbounded buffer
54
54
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
55
55
* </ul>
@@ -73,7 +73,7 @@ public static <T> FlowableTransformer<T, T> valve(Publisher<Boolean> other) {
73
73
* <p>Properties:
74
74
* <ul>
75
75
* <li>If the other Publisher completes, the sequence terminates with an {@code IllegalStateException}.</li>
76
- * <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
76
+ * <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core. Scheduler Scheduler}.</li>
77
77
* <li>The operator is a pass-through for backpressure and uses an internal unbounded buffer
78
78
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
79
79
* </ul>
@@ -99,7 +99,7 @@ public static <T> FlowableTransformer<T, T> valve(Publisher<Boolean> other, bool
99
99
* <p>Properties:
100
100
* <ul>
101
101
* <li>If the other Publisher completes, the sequence terminates with an {@code IllegalStateException}.</li>
102
- * <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
102
+ * <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core. Scheduler Scheduler}.</li>
103
103
* </ul>
104
104
* @param <T> the value type of the main source
105
105
* @param other the other source
@@ -1229,7 +1229,7 @@ public static <T> FlowableTransformer<T, Long> indexOf(Predicate<? super T> pred
1229
1229
* as an individual {@code Runnable} task. Each item received from the upstream will
1230
1230
* also run on the given {@code Scheduler} as individual {@code Runnable} tasks which
1231
1231
* should maximize the possibility of work interleaved on a threadpool-backed {@code Scheduler}
1232
- * such as {@link io.reactivex.schedulers.Schedulers#computation()}.
1232
+ * such as {@link io.reactivex.rxjava3. schedulers.Schedulers#computation()}.
1233
1233
* <dl>
1234
1234
* <dt><b>Backpressure:</b></dt>
1235
1235
* <dd>The operator requests one item at a time and requests the next item once the downstream
@@ -1257,7 +1257,7 @@ public static <T> FlowableTransformer<T, T> requestObserveOn(Scheduler scheduler
1257
1257
* <dt><b>Backpressure:</b></dt>
1258
1258
* <dd>The operator issues {@code request(1)} to its upstream periodically and expects the downstream
1259
1259
* to be ready to consume the items. If the downstream is not ready at that moment,
1260
- * a {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1260
+ * a {@link io.reactivex.rxjava3. exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1261
1261
* and the flow is cancelled.</dd>
1262
1262
* <dt><b>Scheduler:</b></dt>
1263
1263
* <dd>You specify the {@link Scheduler} this operator should use for issuing each {@code request(1)} call.
@@ -1282,7 +1282,7 @@ public static <T> FlowableTransformer<T, T> requestSample(long period, TimeUnit
1282
1282
* <dt><b>Backpressure:</b></dt>
1283
1283
* <dd>The operator issues {@code request(1)} to its upstream after an initial delay, then periodically and expects the downstream
1284
1284
* to be ready to consume the items. If the downstream is not ready at that moment,
1285
- * a {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1285
+ * a {@link io.reactivex.rxjava3. exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1286
1286
* and the flow is cancelled.</dd>
1287
1287
* <dt><b>Scheduler:</b></dt>
1288
1288
* <dd>You specify the {@link Scheduler} this operator should use for issuing each {@code request(1)} call.
@@ -1309,7 +1309,7 @@ public static <T> FlowableTransformer<T, T> requestSample(long initialDelay, lon
1309
1309
* <dt><b>Backpressure:</b></dt>
1310
1310
* <dd>The operator issues {@code request(1)} when the other {@code Publisher} signals an {@code onNext} and expects the downstream
1311
1311
* to be ready to consume the items. If the downstream is not ready at that moment,
1312
- * a {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1312
+ * a {@link io.reactivex.rxjava3. exceptions.MissingBackpressureException MissingBackpressureException} is signalled
1313
1313
* and the flow is cancelled. The other {@code Publisher} is consumed in an unbounded manner.</dd>
1314
1314
* <dt><b>Scheduler:</b></dt>
1315
1315
* <dd>This operator doesn't run on any particular {@link Scheduler}.</dd>
0 commit comments