Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.x: Fix Observable.delay & Flowable.delay javadoc #5617

Merged
merged 1 commit into from
Sep 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Flowable.java
Original file line number Diff line number Diff line change
Expand Up @@ -7261,7 +7261,7 @@ public final Flowable<T> delay(long delay, TimeUnit unit) {

/**
* Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
* specified delay. Error notifications from the source Publisher are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
* <dl>
Expand Down Expand Up @@ -7318,7 +7318,7 @@ public final Flowable<T> delay(long delay, TimeUnit unit, Scheduler scheduler) {

/**
* Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
* specified delay. Error notifications from the source Publisher are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.s.png" alt="">
* <dl>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -6546,7 +6546,7 @@ public final Observable<T> delay(long delay, TimeUnit unit) {

/**
* Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
* specified delay. Error notifications from the source ObservableSource are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
* <dl>
Expand Down Expand Up @@ -6597,7 +6597,7 @@ public final Observable<T> delay(long delay, TimeUnit unit, Scheduler scheduler)

/**
* Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
* specified delay. Error notifications from the source ObservableSource are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.s.png" alt="">
* <dl>
Expand Down