Skip to content

Commit 9f2beac

Browse files
authored
2.x: marble additions and updates (12/11) (#5759)
1 parent b338ffe commit 9f2beac

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/main/java/io/reactivex/Observable.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -7300,7 +7300,7 @@ public final Observable<T> doOnSubscribe(Consumer<? super Disposable> onSubscrib
73007300
* Modifies the source ObservableSource so that it invokes an action when it calls {@code onComplete} or
73017301
* {@code onError}.
73027302
* <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="">
73047304
* <p>
73057305
* This differs from {@code doAfterTerminate} in that this happens <em>before</em> the {@code onComplete} or
73067306
* {@code onError} notification.
@@ -7328,7 +7328,7 @@ public final Observable<T> doOnTerminate(final Action onTerminate) {
73287328
* Returns a Maybe that emits the single item at a specified index in a sequence of emissions from
73297329
* this Observable or completes if this Observable signals fewer elements than index.
73307330
* <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="">
73327332
* <dl>
73337333
* <dt><b>Scheduler:</b></dt>
73347334
* <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) {
73557355
* Returns a Single that emits the item found at a specified index in a sequence of emissions from
73567356
* this Observable, or a default item if that index is out of range.
73577357
* <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="">
73597359
* <dl>
73607360
* <dt><b>Scheduler:</b></dt>
73617361
* <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) {
73857385
* Returns a Single that emits the item found at a specified index in a sequence of emissions from this Observable
73867386
* or signals a {@link NoSuchElementException} if this Observable signals fewer elements than index.
73877387
* <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="">
73897389
* <dl>
73907390
* <dt><b>Scheduler:</b></dt>
73917391
* <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) {
74357435
* Returns a Maybe that emits only the very first item emitted by the source ObservableSource, or
74367436
* completes if the source ObservableSource is empty.
74377437
* <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="">
74397439
* <dl>
74407440
* <dt><b>Scheduler:</b></dt>
74417441
* <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) {
74757475
* Returns a Single that emits only the very first item emitted by this Observable or
74767476
* signals a {@link NoSuchElementException} if this Observable is empty.
74777477
* <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="">
74797479
* <dl>
74807480
* <dt><b>Scheduler:</b></dt>
74817481
* <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
75217521
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
75227522
* ObservableSources and emitting the results of this merger.
75237523
* <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="">
75257525
* <dl>
75267526
* <dt><b>Scheduler:</b></dt>
75277527
* <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
75507550
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
75517551
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
75527552
* 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="">
75557555
* <dl>
75567556
* <dt><b>Scheduler:</b></dt>
75577557
* <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
75837583
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
75847584
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
75857585
* 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="">
75887588
* <dl>
75897589
* <dt><b>Scheduler:</b></dt>
75907590
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -7707,8 +7707,8 @@ public final <R> Observable<R> flatMap(
77077707
* by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
77087708
* ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
77097709
* 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="">
77127712
* <dl>
77137713
* <dt><b>Scheduler:</b></dt>
77147714
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>

0 commit comments

Comments
 (0)