@@ -9687,7 +9687,7 @@ public final Observable<T> sample(long period, TimeUnit unit) {
9687
9687
* Returns an Observable that emits the most recently emitted item (if any) emitted by the source ObservableSource
9688
9688
* within periodic time intervals and optionally emit the very last upstream item when the upstream completes.
9689
9689
* <p>
9690
- * <img width="640 " height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.png" alt="">
9690
+ * <img width="408 " height="177 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.emitlast .png" alt="">
9691
9691
* <dl>
9692
9692
* <dt><b>Scheduler:</b></dt>
9693
9693
* <dd>{@code sample} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -9748,7 +9748,7 @@ public final Observable<T> sample(long period, TimeUnit unit, Scheduler schedule
9748
9748
* within periodic time intervals, where the intervals are defined on a particular Scheduler
9749
9749
* and optionally emit the very last upstream item when the upstream completes.
9750
9750
* <p>
9751
- * <img width="640 " height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.s.png" alt="">
9751
+ * <img width="408 " height="177 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.s.emitlast .png" alt="">
9752
9752
* <dl>
9753
9753
* <dt><b>Scheduler:</b></dt>
9754
9754
* <dd>You specify which {@link Scheduler} this operator will use</dd>
@@ -9784,9 +9784,8 @@ public final Observable<T> sample(long period, TimeUnit unit, Scheduler schedule
9784
9784
* emits the most recently emitted item (if any) emitted by the source ObservableSource since the previous
9785
9785
* emission from the {@code sampler} ObservableSource.
9786
9786
* <p>
9787
- * <img width="640 " height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.o.png" alt="">
9787
+ * <img width="437 " height="198 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.o.nolast .png" alt="">
9788
9788
* <dl>
9789
- * ObservableSource to control data flow.</dd>
9790
9789
* <dt><b>Scheduler:</b></dt>
9791
9790
* <dd>This version of {@code sample} does not operate by default on a particular {@link Scheduler}.</dd>
9792
9791
* </dl>
@@ -9811,9 +9810,8 @@ public final <U> Observable<T> sample(ObservableSource<U> sampler) {
9811
9810
* emission from the {@code sampler} ObservableSource
9812
9811
* and optionally emit the very last upstream item when the upstream or other ObservableSource complete.
9813
9812
* <p>
9814
- * <img width="640 " height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.o.png" alt="">
9813
+ * <img width="437 " height="198 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.o.emitlast .png" alt="">
9815
9814
* <dl>
9816
- * ObservableSource to control data flow.</dd>
9817
9815
* <dt><b>Scheduler:</b></dt>
9818
9816
* <dd>This version of {@code sample} does not operate by default on a particular {@link Scheduler}.</dd>
9819
9817
* </dl>
@@ -10766,6 +10764,7 @@ public final Observable<T> subscribeOn(Scheduler scheduler) {
10766
10764
/**
10767
10765
* Returns an Observable that emits the items emitted by the source ObservableSource or the items of an alternate
10768
10766
* ObservableSource if the source ObservableSource is empty.
10767
+ * <img width="410" height="164" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchifempty.png" alt="">
10769
10768
* <p/>
10770
10769
* <dl>
10771
10770
* <dt><b>Scheduler:</b></dt>
0 commit comments