Skip to content

2.x: update Obs.just(2..10) & switchOnNextDelayError marbles #5651

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/main/java/io/reactivex/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -2265,7 +2265,7 @@ public static <T> Observable<T> just(T item) {
/**
* Converts two items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.2.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2293,7 +2293,7 @@ public static <T> Observable<T> just(T item1, T item2) {
/**
* Converts three items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.3.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2324,7 +2324,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3) {
/**
* Converts four items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.4.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2358,7 +2358,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4) {
/**
* Converts five items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.5.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2395,7 +2395,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
/**
* Converts six items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.6.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2435,7 +2435,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
/**
* Converts seven items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.7.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2478,7 +2478,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
/**
* Converts eight items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.8.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2524,7 +2524,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
/**
* Converts nine items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.9.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -2573,7 +2573,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
/**
* Converts ten items into an ObservableSource that emits those items.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.10.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down Expand Up @@ -3582,7 +3582,7 @@ public static <T> Observable<T> switchOnNext(ObservableSource<? extends Observab
* Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
* most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
* <p>
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchDo.png" alt="">
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchOnNextDelayError.png" alt="">
* <p>
* {@code switchOnNext} subscribes to an ObservableSource that emits ObservableSources. Each time it observes one of
* these emitted ObservableSources, the ObservableSource returned by {@code switchOnNext} begins emitting the items
Expand Down Expand Up @@ -3615,7 +3615,7 @@ public static <T> Observable<T> switchOnNextDelayError(ObservableSource<? extend
* Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
* most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
* <p>
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchDo.png" alt="">
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchOnNextDelayError.png" alt="">
* <p>
* {@code switchOnNext} subscribes to an ObservableSource that emits ObservableSources. Each time it observes one of
* these emitted ObservableSources, the ObservableSource returned by {@code switchOnNext} begins emitting the items
Expand Down