File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
src/main/java/io/reactivex Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -13392,6 +13392,9 @@ public final Flowable<T> take(long count) {
13392
13392
* Returns a Flowable that emits those items emitted by source Publisher before a specified time runs
13393
13393
* out.
13394
13394
* <p>
13395
+ * If time runs out before the {@code Flowable} completes normally, the {@code onComplete} event will be
13396
+ * signaled on the default {@code computation} {@link Scheduler}.
13397
+ * <p>
13395
13398
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.t.png" alt="">
13396
13399
* <dl>
13397
13400
* <dt><b>Backpressure:</b></dt>
@@ -13419,6 +13422,9 @@ public final Flowable<T> take(long time, TimeUnit unit) {
13419
13422
* Returns a Flowable that emits those items emitted by source Publisher before a specified time (on a
13420
13423
* specified Scheduler) runs out.
13421
13424
* <p>
13425
+ * If time runs out before the {@code Flowable} completes normally, the {@code onComplete} event will be
13426
+ * signaled on the provided {@link Scheduler}.
13427
+ * <p>
13422
13428
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.ts.png" alt="">
13423
13429
* <dl>
13424
13430
* <dt><b>Backpressure:</b></dt>
Original file line number Diff line number Diff line change @@ -11286,6 +11286,9 @@ public final Observable<T> take(long count) {
11286
11286
* Returns an Observable that emits those items emitted by source ObservableSource before a specified time runs
11287
11287
* out.
11288
11288
* <p>
11289
+ * If time runs out before the {@code Observable} completes normally, the {@code onComplete} event will be
11290
+ * signaled on the default {@code computation} {@link Scheduler}.
11291
+ * <p>
11289
11292
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.t.png" alt="">
11290
11293
* <dl>
11291
11294
* <dt><b>Scheduler:</b></dt>
@@ -11309,6 +11312,9 @@ public final Observable<T> take(long time, TimeUnit unit) {
11309
11312
* Returns an Observable that emits those items emitted by source ObservableSource before a specified time (on a
11310
11313
* specified Scheduler) runs out.
11311
11314
* <p>
11315
+ * If time runs out before the {@code Observable} completes normally, the {@code onComplete} event will be
11316
+ * signaled on the provided {@link Scheduler}.
11317
+ * <p>
11312
11318
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.ts.png" alt="">
11313
11319
* <dl>
11314
11320
* <dt><b>Scheduler:</b></dt>
You can’t perform that action at this time.
0 commit comments