@@ -4689,7 +4689,7 @@ public static <T, R> Observable<R> zipArray(Function<? super Object[], ? extends
4689
4689
* {@code Function<Integer[], R>} passed to the method would trigger a {@code ClassCastException}.
4690
4690
*
4691
4691
* <p>
4692
- * <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip .png" alt="">
4692
+ * <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zipIterable.o .png" alt="">
4693
4693
* <dl>
4694
4694
* <dt><b>Scheduler:</b></dt>
4695
4695
* <dd>{@code zipIterable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -4752,7 +4752,7 @@ public final Single<Boolean> all(Predicate<? super T> predicate) {
4752
4752
* Mirrors the ObservableSource (current or provided) that first either emits an item or sends a termination
4753
4753
* notification.
4754
4754
* <p>
4755
- * <img width="640" height="385" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/amb .png" alt="">
4755
+ * <img width="640" height="385" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/ambWith.o .png" alt="">
4756
4756
* <dl>
4757
4757
* <dt><b>Scheduler:</b></dt>
4758
4758
* <dd>{@code ambWith} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -4854,7 +4854,7 @@ public final T blockingFirst(T defaultItem) {
4854
4854
* <p>
4855
4855
* <em>Note:</em> This will block even if the underlying Observable is asynchronous.
4856
4856
* <p>
4857
- * <img width="640" height="330" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.forEach .png" alt="">
4857
+ * <img width="640" height="330" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingForEach.o .png" alt="">
4858
4858
* <p>
4859
4859
* This is similar to {@link Observable#subscribe(Observer)}, but it blocks. Because it blocks it does not
4860
4860
* need the {@link Observer#onComplete()} or {@link Observer#onError(Throwable)} methods. If the
@@ -4892,7 +4892,7 @@ public final void blockingForEach(Consumer<? super T> onNext) {
4892
4892
/**
4893
4893
* Converts this {@code Observable} into an {@link Iterable}.
4894
4894
* <p>
4895
- * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.toIterable .png" alt="">
4895
+ * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingIterable.o .png" alt="">
4896
4896
* <dl>
4897
4897
* <dt><b>Scheduler:</b></dt>
4898
4898
* <dd>{@code blockingIterable} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -4931,7 +4931,7 @@ public final Iterable<T> blockingIterable(int bufferSize) {
4931
4931
* Returns the last item emitted by this {@code Observable}, or throws
4932
4932
* {@code NoSuchElementException} if this {@code Observable} emits no items.
4933
4933
* <p>
4934
- * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.last .png" alt="">
4934
+ * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingLast.o .png" alt="">
4935
4935
* <dl>
4936
4936
* <dt><b>Scheduler:</b></dt>
4937
4937
* <dd>{@code blockingLast} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -4958,7 +4958,7 @@ public final T blockingLast() {
4958
4958
* Returns the last item emitted by this {@code Observable}, or a default value if it emits no
4959
4959
* items.
4960
4960
* <p>
4961
- * <img width="640" height="310" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.lastOrDefault .png" alt="">
4961
+ * <img width="640" height="310" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingLastDefault.o .png" alt="">
4962
4962
* <dl>
4963
4963
* <dt><b>Scheduler:</b></dt>
4964
4964
* <dd>{@code blockingLast} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -5006,7 +5006,7 @@ public final Iterable<T> blockingLatest() {
5006
5006
* Returns an {@link Iterable} that always returns the item most recently emitted by this
5007
5007
* {@code Observable}.
5008
5008
* <p>
5009
- * <img width="640" height="490 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.mostRecent .png" alt="">
5009
+ * <img width="640" height="426 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingMostRecent.o .png" alt="">
5010
5010
* <dl>
5011
5011
* <dt><b>Scheduler:</b></dt>
5012
5012
* <dd>{@code blockingMostRecent} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -5029,7 +5029,7 @@ public final Iterable<T> blockingMostRecent(T initialValue) {
5029
5029
* Returns an {@link Iterable} that blocks until this {@code Observable} emits another item, then
5030
5030
* returns that item.
5031
5031
* <p>
5032
- * <img width="640" height="490 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.next .png" alt="">
5032
+ * <img width="640" height="427 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingNext.o .png" alt="">
5033
5033
* <dl>
5034
5034
* <dt><b>Scheduler:</b></dt>
5035
5035
* <dd>{@code blockingNext} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -5049,7 +5049,7 @@ public final Iterable<T> blockingNext() {
5049
5049
* If this {@code Observable} completes after emitting a single item, return that item, otherwise
5050
5050
* throw a {@code NoSuchElementException}.
5051
5051
* <p>
5052
- * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.single .png" alt="">
5052
+ * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingSingle.o .png" alt="">
5053
5053
* <dl>
5054
5054
* <dt><b>Scheduler:</b></dt>
5055
5055
* <dd>{@code blockingSingle} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -5073,7 +5073,7 @@ public final T blockingSingle() {
5073
5073
* more than one item, throw an {@code IllegalArgumentException}; if it emits no items, return a default
5074
5074
* value.
5075
5075
* <p>
5076
- * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B.singleOrDefault .png" alt="">
5076
+ * <img width="640" height="315" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/blockingSingleDefault.o .png" alt="">
5077
5077
* <dl>
5078
5078
* <dt><b>Scheduler:</b></dt>
5079
5079
* <dd>{@code blockingSingle} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -5854,7 +5854,7 @@ public final Observable<T> cache() {
5854
5854
* Returns an Observable that subscribes to this ObservableSource lazily, caches all of its events
5855
5855
* and replays them, in the same order as received, to all the downstream subscribers.
5856
5856
* <p>
5857
- * <img width="640" height="410" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/cache .png" alt="">
5857
+ * <img width="640" height="410" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/cacheWithInitialCapacity.o .png" alt="">
5858
5858
* <p>
5859
5859
* This is useful when you want an ObservableSource to cache responses and you can't control the
5860
5860
* subscribe/dispose behavior of all the {@link Observer}s.
0 commit comments