@@ -6058,8 +6058,8 @@ public final Observable<T> retry(int retryCount) {
6058
6058
}
6059
6059
6060
6060
/**
6061
- * Returns an Observable that emits the results of sampling the items emitted by the source Observable at a
6062
- * specified time interval .
6061
+ * Returns an Observable that emits the most recently emitted item (if any) emitted by the source Observable
6062
+ * within periodic time intervals .
6063
6063
* <p>
6064
6064
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sample.png">
6065
6065
*
@@ -6076,8 +6076,8 @@ public final Observable<T> sample(long period, TimeUnit unit) {
6076
6076
}
6077
6077
6078
6078
/**
6079
- * Returns an Observable that emits the results of sampling the items emitted by the source Observable at a
6080
- * specified time interval .
6079
+ * Returns an Observable that emits the most recently emitted item (if any) emitted by the source Observable
6080
+ * within periodic time intervals, where the intervals are defined on a particular Scheduler .
6081
6081
* <p>
6082
6082
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sample.s.png">
6083
6083
*
@@ -6096,8 +6096,9 @@ public final Observable<T> sample(long period, TimeUnit unit, Scheduler schedule
6096
6096
}
6097
6097
6098
6098
/**
6099
- * Return an Observable that emits the results of sampling the items emitted by the source Observable
6100
- * whenever the specified {@code sampler} Observable emits an item or completes.
6099
+ * Returns an Observable that, when the specified {@code sampler} Observable emits an item or completes,
6100
+ * emits the most recently emitted item (if any) emitted by the source Observable since the previous
6101
+ * emission from the {@code sampler} Observable.
6101
6102
* <p>
6102
6103
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sample.o.png">
6103
6104
*
0 commit comments