@@ -7805,8 +7805,8 @@ public final <R> Observable<R> flatMap(
7805
7805
* Returns an Observable that applies a function to each item emitted or notification raised by the source
7806
7806
* ObservableSource and then flattens the ObservableSources returned from these functions and emits the resulting items,
7807
7807
* while limiting the maximum number of concurrent subscriptions to these ObservableSources.
7808
- * <!-- <p> -- >
7809
- * <!-- < img width="640" height="410" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.nce.png" alt=""> -- >
7808
+ * <p >
7809
+ * <img width="640" height="410" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.nce.png" alt="">
7810
7810
* <dl>
7811
7811
* <dt><b>Scheduler:</b></dt>
7812
7812
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7939,8 +7939,8 @@ public final <U, R> Observable<R> flatMap(Function<? super T, ? extends Observab
7939
7939
* Returns an Observable that emits the results of a specified function to the pair of values emitted by the
7940
7940
* source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
7941
7941
* subscriptions to these ObservableSources.
7942
- * <!-- <p> -- >
7943
- * <!-- < img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt=""> -- >
7942
+ * <p >
7943
+ * <img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt="">
7944
7944
* <dl>
7945
7945
* <dt><b>Scheduler:</b></dt>
7946
7946
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7976,8 +7976,8 @@ public final <U, R> Observable<R> flatMap(Function<? super T, ? extends Observab
7976
7976
* Returns an Observable that emits the results of a specified function to the pair of values emitted by the
7977
7977
* source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
7978
7978
* subscriptions to these ObservableSources.
7979
- * <!-- <p> -- >
7980
- * <!-- < img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt=""> -- >
7979
+ * <p >
7980
+ * <img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt="">
7981
7981
* <dl>
7982
7982
* <dt><b>Scheduler:</b></dt>
7983
7983
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8017,8 +8017,8 @@ public final <U, R> Observable<R> flatMap(final Function<? super T, ? extends Ob
8017
8017
* Returns an Observable that emits the results of a specified function to the pair of values emitted by the
8018
8018
* source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
8019
8019
* subscriptions to these ObservableSources.
8020
- * <!-- <p> -- >
8021
- * <!-- < img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt=""> -- >
8020
+ * <p >
8021
+ * <img width="640" height="390" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMap.r.png" alt="">
8022
8022
* <dl>
8023
8023
* <dt><b>Scheduler:</b></dt>
8024
8024
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8050,6 +8050,8 @@ public final <U, R> Observable<R> flatMap(Function<? super T, ? extends Observab
8050
8050
/**
8051
8051
* Maps each element of the upstream Observable into CompletableSources, subscribes to them and
8052
8052
* waits until the upstream and all CompletableSources complete.
8053
+ * <p>
8054
+ * <img width="640" height="424" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapCompletable.o.png" alt="">
8053
8055
* <dl>
8054
8056
* <dt><b>Scheduler:</b></dt>
8055
8057
* <dd>{@code flatMapCompletable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8066,6 +8068,8 @@ public final Completable flatMapCompletable(Function<? super T, ? extends Comple
8066
8068
/**
8067
8069
* Maps each element of the upstream Observable into CompletableSources, subscribes to them and
8068
8070
* waits until the upstream and all CompletableSources complete, optionally delaying all errors.
8071
+ * <p>
8072
+ * <img width="640" height="361" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapCompletableDelayError.o.png" alt="">
8069
8073
* <dl>
8070
8074
* <dt><b>Scheduler:</b></dt>
8071
8075
* <dd>{@code flatMapCompletable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8086,7 +8090,7 @@ public final Completable flatMapCompletable(Function<? super T, ? extends Comple
8086
8090
* Returns an Observable that merges each item emitted by the source ObservableSource with the values in an
8087
8091
* Iterable corresponding to that item that is generated by a selector.
8088
8092
* <p>
8089
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.o.png" alt="">
8093
+ * <img width="640" height="343 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.o.png" alt="">
8090
8094
* <dl>
8091
8095
* <dt><b>Scheduler:</b></dt>
8092
8096
* <dd>{@code flatMapIterable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8112,7 +8116,7 @@ public final <U> Observable<U> flatMapIterable(final Function<? super T, ? exten
8112
8116
* Returns an Observable that emits the results of applying a function to the pair of values from the source
8113
8117
* ObservableSource and an Iterable corresponding to that item that is generated by a selector.
8114
8118
* <p>
8115
- * <img width="640" height="390 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.o.r.png" alt="">
8119
+ * <img width="640" height="410 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.o.r.png" alt="">
8116
8120
* <dl>
8117
8121
* <dt><b>Scheduler:</b></dt>
8118
8122
* <dd>{@code flatMapIterable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -8228,6 +8232,8 @@ public final <R> Observable<R> flatMapSingle(Function<? super T, ? extends Singl
8228
8232
/**
8229
8233
* Subscribes to the {@link ObservableSource} and receives notifications for each element.
8230
8234
* <p>
8235
+ * <img width="640" height="264" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/forEach.o.png" alt="">
8236
+ * <p>
8231
8237
* Alias to {@link #subscribe(Consumer)}
8232
8238
* <dl>
8233
8239
* <dt><b>Scheduler:</b></dt>
@@ -8252,6 +8258,8 @@ public final Disposable forEach(Consumer<? super T> onNext) {
8252
8258
* Subscribes to the {@link ObservableSource} and receives notifications for each element until the
8253
8259
* onNext Predicate returns false.
8254
8260
* <p>
8261
+ * <img width="640" height="272" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/forEachWhile.o.png" alt="">
8262
+ * <p>
8255
8263
* If the Observable emits an error, it is wrapped into an
8256
8264
* {@link io.reactivex.exceptions.OnErrorNotImplementedException OnErrorNotImplementedException}
8257
8265
* and routed to the RxJavaPlugins.onError handler.
@@ -8584,6 +8592,8 @@ public final <TRight, TLeftEnd, TRightEnd, R> Observable<R> groupJoin(
8584
8592
* <p>Allows hiding extra features such as {@link io.reactivex.subjects.Subject}'s
8585
8593
* {@link Observer} methods or preventing certain identity-based
8586
8594
* optimizations (fusion).
8595
+ * <p>
8596
+ * <img width="640" height="283" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/hide.o.png" alt="">
8587
8597
* <dl>
8588
8598
* <dt><b>Scheduler:</b></dt>
8589
8599
* <dd>{@code hide} does not operate by default on a particular {@link Scheduler}.</dd>
0 commit comments