@@ -7300,7 +7300,7 @@ public final Observable<T> doOnSubscribe(Consumer<? super Disposable> onSubscrib
7300
7300
* Modifies the source ObservableSource so that it invokes an action when it calls {@code onComplete} or
7301
7301
* {@code onError}.
7302
7302
* <p>
7303
- * <img width="640" height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doOnTerminate.png" alt="">
7303
+ * <img width="640" height="327 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doOnTerminate.o .png" alt="">
7304
7304
* <p>
7305
7305
* This differs from {@code doAfterTerminate} in that this happens <em>before</em> the {@code onComplete} or
7306
7306
* {@code onError} notification.
@@ -7328,7 +7328,7 @@ public final Observable<T> doOnTerminate(final Action onTerminate) {
7328
7328
* Returns a Maybe that emits the single item at a specified index in a sequence of emissions from
7329
7329
* this Observable or completes if this Observable signals fewer elements than index.
7330
7330
* <p>
7331
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAt.2m .png" alt="">
7331
+ * <img width="640" height="363 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAt.o .png" alt="">
7332
7332
* <dl>
7333
7333
* <dt><b>Scheduler:</b></dt>
7334
7334
* <dd>{@code elementAt} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7355,7 +7355,7 @@ public final Maybe<T> elementAt(long index) {
7355
7355
* Returns a Single that emits the item found at a specified index in a sequence of emissions from
7356
7356
* this Observable, or a default item if that index is out of range.
7357
7357
* <p>
7358
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAt.2s .png" alt="">
7358
+ * <img width="640" height="353 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAtDefault.o .png" alt="">
7359
7359
* <dl>
7360
7360
* <dt><b>Scheduler:</b></dt>
7361
7361
* <dd>{@code elementAt} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7385,7 +7385,7 @@ public final Single<T> elementAt(long index, T defaultItem) {
7385
7385
* Returns a Single that emits the item found at a specified index in a sequence of emissions from this Observable
7386
7386
* or signals a {@link NoSuchElementException} if this Observable signals fewer elements than index.
7387
7387
* <p>
7388
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAt.2s .png" alt="">
7388
+ * <img width="640" height="362 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAtOrError.o .png" alt="">
7389
7389
* <dl>
7390
7390
* <dt><b>Scheduler:</b></dt>
7391
7391
* <dd>{@code elementAtOrError} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7435,7 +7435,7 @@ public final Observable<T> filter(Predicate<? super T> predicate) {
7435
7435
* Returns a Maybe that emits only the very first item emitted by the source ObservableSource, or
7436
7436
* completes if the source ObservableSource is empty.
7437
7437
* <p>
7438
- * <img width="640" height="237 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstElement.m.png" alt="">
7438
+ * <img width="640" height="286 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstElement.m.png" alt="">
7439
7439
* <dl>
7440
7440
* <dt><b>Scheduler:</b></dt>
7441
7441
* <dd>{@code firstElement} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7475,7 +7475,7 @@ public final Single<T> first(T defaultItem) {
7475
7475
* Returns a Single that emits only the very first item emitted by this Observable or
7476
7476
* signals a {@link NoSuchElementException} if this Observable is empty.
7477
7477
* <p>
7478
- * <img width="640" height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/first.2 .png" alt="">
7478
+ * <img width="640" height="434 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstOrError.o .png" alt="">
7479
7479
* <dl>
7480
7480
* <dt><b>Scheduler:</b></dt>
7481
7481
* <dd>{@code firstOrError} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7521,7 +7521,7 @@ public final <R> Observable<R> flatMap(Function<? super T, ? extends ObservableS
7521
7521
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
7522
7522
* ObservableSources and emitting the results of this merger.
7523
7523
* <p>
7524
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMap .png" alt="">
7524
+ * <img width="640" height="356 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapDelayError.o .png" alt="">
7525
7525
* <dl>
7526
7526
* <dt><b>Scheduler:</b></dt>
7527
7527
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7550,8 +7550,8 @@ public final <R> Observable<R> flatMap(Function<? super T, ? extends ObservableS
7550
7550
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
7551
7551
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
7552
7552
* subscriptions to these ObservableSources.
7553
- * <!-- <p> -- >
7554
- * <!-- < img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMap. png" alt=""> -- >
7553
+ * <p >
7554
+ * <img width="640" height="441 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapMaxConcurrency.o. png" alt="">
7555
7555
* <dl>
7556
7556
* <dt><b>Scheduler:</b></dt>
7557
7557
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7583,8 +7583,8 @@ public final <R> Observable<R> flatMap(Function<? super T, ? extends ObservableS
7583
7583
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
7584
7584
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
7585
7585
* subscriptions to these ObservableSources.
7586
- * <!-- <p> -- >
7587
- * <!-- < img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMap. png" alt=""> -- >
7586
+ * <p >
7587
+ * <img width="640" height="441 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapMaxConcurrency.o. png" alt="">
7588
7588
* <dl>
7589
7589
* <dt><b>Scheduler:</b></dt>
7590
7590
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7707,8 +7707,8 @@ public final <R> Observable<R> flatMap(
7707
7707
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
7708
7708
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
7709
7709
* subscriptions to these ObservableSources.
7710
- * <!-- <p> -- >
7711
- * <!-- < img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMap. png" alt=""> -- >
7710
+ * <p >
7711
+ * <img width="640" height="441 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapMaxConcurrency.o. png" alt="">
7712
7712
* <dl>
7713
7713
* <dt><b>Scheduler:</b></dt>
7714
7714
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
0 commit comments