Skip to content

Commit e25be7c

Browse files
authored
2.x: marbles for Observable all, fromPublisher, zipArray (#5740)
1 parent ed5cd8b commit e25be7c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1898,6 +1898,8 @@ public static <T> Observable<T> fromIterable(Iterable<? extends T> source) {
18981898
/**
18991899
* Converts an arbitrary Reactive-Streams Publisher into an Observable.
19001900
* <p>
1901+
* <img width="640" height="344" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/fromPublisher.o.png" alt="">
1902+
* <p>
19011903
* The {@link Publisher} must follow the
19021904
* <a href="https://github.com/reactive-streams/reactive-streams-jvm#reactive-streams">Reactive-Streams specification</a>.
19031905
* Violating the specification may result in undefined behavior.
@@ -4628,7 +4630,7 @@ public static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R> Observable<R> zip(
46284630
* {@code Function<Integer[], R>} passed to the method would trigger a {@code ClassCastException}.
46294631
*
46304632
* <p>
4631-
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zipArray.png" alt="">
4633+
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zipArray.o.png" alt="">
46324634
* <dl>
46334635
* <dt><b>Scheduler:</b></dt>
46344636
* <dd>{@code zipArray} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -4729,7 +4731,7 @@ public static <T, R> Observable<R> zipIterable(Iterable<? extends ObservableSour
47294731
* Returns a Single that emits a Boolean that indicates whether all of the items emitted by the source
47304732
* ObservableSource satisfy a condition.
47314733
* <p>
4732-
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/all.2.png" alt="">
4734+
* <img width="640" height="264" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/all.o.png" alt="">
47334735
* <dl>
47344736
* <dt><b>Scheduler:</b></dt>
47354737
* <dd>{@code all} does not operate by default on a particular {@link Scheduler}.</dd>

0 commit comments

Comments
 (0)