Skip to content

Commit 56d94b2

Browse files
authored
1.x: update sample(time) diagram to indicate emission of last (#5007)
1 parent 9f02563 commit 56d94b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9100,7 +9100,7 @@ public final Observable<T> retryWhen(final Func1<? super Observable<? extends Th
91009100
* Returns an Observable that emits the most recently emitted item (if any) emitted by the source Observable
91019101
* within periodic time intervals.
91029102
* <p>
9103-
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.png" alt="">
9103+
* <img width="640" height="276" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.emitlast.1x.png" alt="">
91049104
* <dl>
91059105
* <dt><b>Backpressure:</b></dt>
91069106
* <dd>This operator does not support backpressure as it uses time to control data flow.</dd>
@@ -9126,7 +9126,7 @@ public final Observable<T> sample(long period, TimeUnit unit) {
91269126
* Returns an Observable that emits the most recently emitted item (if any) emitted by the source Observable
91279127
* within periodic time intervals, where the intervals are defined on a particular Scheduler.
91289128
* <p>
9129-
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.s.png" alt="">
9129+
* <img width="640" height="276" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sample.s.emitlast.1x.png" alt="">
91309130
* <dl>
91319131
* <dt><b>Backpressure:</b></dt>
91329132
* <dd>This operator does not support backpressure as it uses time to control data flow.</dd>

0 commit comments

Comments
 (0)