Skip to content

Commit 3abd86a

Browse files
authored
2.x: update Obs.just(2..10) & switchOnNextDelayError marbles (#5651)
1 parent e1cb606 commit 3abd86a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2265,7 +2265,7 @@ public static <T> Observable<T> just(T item) {
22652265
/**
22662266
* Converts two items into an ObservableSource that emits those items.
22672267
* <p>
2268-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2268+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.2.png" alt="">
22692269
* <dl>
22702270
* <dt><b>Scheduler:</b></dt>
22712271
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2293,7 +2293,7 @@ public static <T> Observable<T> just(T item1, T item2) {
22932293
/**
22942294
* Converts three items into an ObservableSource that emits those items.
22952295
* <p>
2296-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2296+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.3.png" alt="">
22972297
* <dl>
22982298
* <dt><b>Scheduler:</b></dt>
22992299
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2324,7 +2324,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3) {
23242324
/**
23252325
* Converts four items into an ObservableSource that emits those items.
23262326
* <p>
2327-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2327+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.4.png" alt="">
23282328
* <dl>
23292329
* <dt><b>Scheduler:</b></dt>
23302330
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2358,7 +2358,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4) {
23582358
/**
23592359
* Converts five items into an ObservableSource that emits those items.
23602360
* <p>
2361-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2361+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.5.png" alt="">
23622362
* <dl>
23632363
* <dt><b>Scheduler:</b></dt>
23642364
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2395,7 +2395,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
23952395
/**
23962396
* Converts six items into an ObservableSource that emits those items.
23972397
* <p>
2398-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2398+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.6.png" alt="">
23992399
* <dl>
24002400
* <dt><b>Scheduler:</b></dt>
24012401
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2435,7 +2435,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
24352435
/**
24362436
* Converts seven items into an ObservableSource that emits those items.
24372437
* <p>
2438-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2438+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.7.png" alt="">
24392439
* <dl>
24402440
* <dt><b>Scheduler:</b></dt>
24412441
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2478,7 +2478,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
24782478
/**
24792479
* Converts eight items into an ObservableSource that emits those items.
24802480
* <p>
2481-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2481+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.8.png" alt="">
24822482
* <dl>
24832483
* <dt><b>Scheduler:</b></dt>
24842484
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2524,7 +2524,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
25242524
/**
25252525
* Converts nine items into an ObservableSource that emits those items.
25262526
* <p>
2527-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2527+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.9.png" alt="">
25282528
* <dl>
25292529
* <dt><b>Scheduler:</b></dt>
25302530
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2573,7 +2573,7 @@ public static <T> Observable<T> just(T item1, T item2, T item3, T item4, T item5
25732573
/**
25742574
* Converts ten items into an ObservableSource that emits those items.
25752575
* <p>
2576-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.m.png" alt="">
2576+
* <img width="640" height="186" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.10.png" alt="">
25772577
* <dl>
25782578
* <dt><b>Scheduler:</b></dt>
25792579
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -3582,7 +3582,7 @@ public static <T> Observable<T> switchOnNext(ObservableSource<? extends Observab
35823582
* Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
35833583
* most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
35843584
* <p>
3585-
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchDo.png" alt="">
3585+
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchOnNextDelayError.png" alt="">
35863586
* <p>
35873587
* {@code switchOnNext} subscribes to an ObservableSource that emits ObservableSources. Each time it observes one of
35883588
* these emitted ObservableSources, the ObservableSource returned by {@code switchOnNext} begins emitting the items
@@ -3615,7 +3615,7 @@ public static <T> Observable<T> switchOnNextDelayError(ObservableSource<? extend
36153615
* Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
36163616
* most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
36173617
* <p>
3618-
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchDo.png" alt="">
3618+
* <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchOnNextDelayError.png" alt="">
36193619
* <p>
36203620
* {@code switchOnNext} subscribes to an ObservableSource that emits ObservableSources. Each time it observes one of
36213621
* these emitted ObservableSources, the ObservableSource returned by {@code switchOnNext} begins emitting the items

0 commit comments

Comments
 (0)