Skip to content

Commit c038c20

Browse files
committed
Fix javadoc links
1 parent 98dbcf9 commit c038c20

8 files changed

+16
-16
lines changed

src/main/java/hu/akarnokd/rxjava3/consumers/CompletableConsumers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.reactivex.rxjava3.internal.functions.*;
2323

2424
/**
25-
* Utility methods for creating and using consumers {@link io.reactivex.Completable}s.
25+
* Utility methods for creating and using consumers {@link io.reactivex.rxjava3.core.Completable}s.
2626
* @since 0.18.0
2727
*/
2828
public final class CompletableConsumers {

src/main/java/hu/akarnokd/rxjava3/consumers/FlowableConsumers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.reactivex.rxjava3.internal.functions.*;
2323

2424
/**
25-
* Utility methods for creating and using consumers {@link io.reactivex.Flowable}s.
25+
* Utility methods for creating and using consumers {@link io.reactivex.rxjava3.core.Flowable}s.
2626
* @since 0.18.0
2727
*/
2828
public final class FlowableConsumers {

src/main/java/hu/akarnokd/rxjava3/consumers/MaybeConsumers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.reactivex.rxjava3.internal.functions.*;
2323

2424
/**
25-
* Utility methods for creating and using consumers {@link io.reactivex.Maybe}s.
25+
* Utility methods for creating and using consumers {@link io.reactivex.rxjava3.core.Maybe}s.
2626
* @since 0.18.0
2727
*/
2828
public final class MaybeConsumers {

src/main/java/hu/akarnokd/rxjava3/consumers/ObservableConsumers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.reactivex.rxjava3.internal.functions.*;
2323

2424
/**
25-
* Utility methods for creating and using consumers {@link io.reactivex.Observable}s.
25+
* Utility methods for creating and using consumers {@link io.reactivex.rxjava3.core.Observable}s.
2626
* @since 0.18.0
2727
*/
2828
public final class ObservableConsumers {

src/main/java/hu/akarnokd/rxjava3/consumers/SingleConsumers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.reactivex.rxjava3.internal.functions.*;
2323

2424
/**
25-
* Utility methods for creating and using consumers {@link io.reactivex.SingleObserver}s.
25+
* Utility methods for creating and using consumers {@link io.reactivex.rxjava3.core.SingleObserver}s.
2626
* @since 0.18.0
2727
*/
2828
public final class SingleConsumers {

src/main/java/hu/akarnokd/rxjava3/operators/FlowableTransformers.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private FlowableTransformers() {
4949
* <ul>
5050
* <li>The operator starts with an open valve.</li>
5151
* <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>
5353
* <li>The operator is a pass-through for backpressure and uses an internal unbounded buffer
5454
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
5555
* </ul>
@@ -73,7 +73,7 @@ public static <T> FlowableTransformer<T, T> valve(Publisher<Boolean> other) {
7373
* <p>Properties:
7474
* <ul>
7575
* <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>
7777
* <li>The operator is a pass-through for backpressure and uses an internal unbounded buffer
7878
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
7979
* </ul>
@@ -99,7 +99,7 @@ public static <T> FlowableTransformer<T, T> valve(Publisher<Boolean> other, bool
9999
* <p>Properties:
100100
* <ul>
101101
* <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>
103103
* </ul>
104104
* @param <T> the value type of the main source
105105
* @param other the other source
@@ -1229,7 +1229,7 @@ public static <T> FlowableTransformer<T, Long> indexOf(Predicate<? super T> pred
12291229
* as an individual {@code Runnable} task. Each item received from the upstream will
12301230
* also run on the given {@code Scheduler} as individual {@code Runnable} tasks which
12311231
* 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()}.
12331233
* <dl>
12341234
* <dt><b>Backpressure:</b></dt>
12351235
* <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
12571257
* <dt><b>Backpressure:</b></dt>
12581258
* <dd>The operator issues {@code request(1)} to its upstream periodically and expects the downstream
12591259
* 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
12611261
* and the flow is cancelled.</dd>
12621262
* <dt><b>Scheduler:</b></dt>
12631263
* <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
12821282
* <dt><b>Backpressure:</b></dt>
12831283
* <dd>The operator issues {@code request(1)} to its upstream after an initial delay, then periodically and expects the downstream
12841284
* 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
12861286
* and the flow is cancelled.</dd>
12871287
* <dt><b>Scheduler:</b></dt>
12881288
* <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
13091309
* <dt><b>Backpressure:</b></dt>
13101310
* <dd>The operator issues {@code request(1)} when the other {@code Publisher} signals an {@code onNext} and expects the downstream
13111311
* 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
13131313
* and the flow is cancelled. The other {@code Publisher} is consumed in an unbounded manner.</dd>
13141314
* <dt><b>Scheduler:</b></dt>
13151315
* <dd>This operator doesn't run on any particular {@link Scheduler}.</dd>

src/main/java/hu/akarnokd/rxjava3/operators/ObservableTransformers.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public static <T, R> ObservableTransformer<T, R> errorJump(ObservableTransformer
154154
* <ul>
155155
* <li>The operator starts with an open valve.</li>
156156
* <li>If the other ObservableSource completes, the sequence terminates with an {@code IllegalStateException}.</li>
157-
* <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
157+
* <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core.Scheduler Scheduler}.</li>
158158
* <li>The operator uses an internal unbounded buffer
159159
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
160160
* </ul>
@@ -177,7 +177,7 @@ public static <T> ObservableTransformer<T, T> valve(ObservableSource<Boolean> ot
177177
* <p>Properties:
178178
* <ul>
179179
* <li>If the other ObservableSource completes, the sequence terminates with an {@code IllegalStateException}.</li>
180-
* <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
180+
* <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core.Scheduler Scheduler}.</li>
181181
* <li>The operator uses an internal unbounded buffer
182182
* of size {@link Flowable#bufferSize()} to hold onto values if the valve is closed.</li>
183183
* </ul>
@@ -202,7 +202,7 @@ public static <T> ObservableTransformer<T, T> valve(ObservableSource<Boolean> ot
202202
* <p>Properties:
203203
* <ul>
204204
* <li>If the other ObservableSource completes, the sequence terminates with an {@code IllegalStateException}.</li>
205-
* <li>The operator doesn't run on any particular {@link io.reactivex.Scheduler Scheduler}.</li>
205+
* <li>The operator doesn't run on any particular {@link io.reactivex.rxjava3.core.Scheduler Scheduler}.</li>
206206
* </ul>
207207
* @param <T> the value type of the main source
208208
* @param other the other source

src/main/java/hu/akarnokd/rxjava3/subjects/Subjects.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private Subjects() {
3434
* Wraps a Subject and makes sure if all observers dispose
3535
* their disposables, the upstream's Disposable gets disposed as well.
3636
* <p>
37-
* This operator is similar to {@link io.reactivex.observables.ConnectableObservable#refCount()}
37+
* This operator is similar to {@link io.reactivex.rxjava3.observables.ConnectableObservable#refCount()}
3838
* except the first Observer doesn't trigger any sort of connection; that happens
3939
* when the resulting Subject is subscribed to an Observable manually.
4040
* @param <T> the input and output value type

0 commit comments

Comments
 (0)