File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10536,6 +10536,9 @@ public final Observable<T> take(final int count) {
1053610536 * Returns an Observable that emits those items emitted by source Observable before a specified time runs
1053710537 * out.
1053810538 * <p>
10539+ * If time runs out before the {@code Observable} completes normally, the {@code onComplete} event will be
10540+ * signaled on the default {@code computation} {@link Scheduler}.
10541+ * <p>
1053910542 * <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.t.png" alt="">
1054010543 * <dl>
1054110544 * <dt><b>Backpressure:</b></dt>
@@ -10560,6 +10563,9 @@ public final Observable<T> take(long time, TimeUnit unit) {
1056010563 * Returns an Observable that emits those items emitted by source Observable before a specified time (on a
1056110564 * specified Scheduler) runs out.
1056210565 * <p>
10566+ * If time runs out before the {@code Observable} completes normally, the {@code onComplete} event will be
10567+ * signaled on the provided {@link Scheduler}.
10568+ * <p>
1056310569 * <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.ts.png" alt="">
1056410570 * <dl>
1056510571 * <dt><b>Backpressure:</b></dt>
You can’t perform that action at this time.
0 commit comments