File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/main/java/io/reactivex/rxjava3/core Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5397,6 +5397,10 @@ public final Single<Boolean> any(@NonNull Predicate<? super T> predicate) {
5397
5397
* <dl>
5398
5398
* <dt><b>Scheduler:</b></dt>
5399
5399
* <dd>{@code blockingFirst} does not operate by default on a particular {@link Scheduler}.</dd>
5400
+ * <dt><b>Error handling:</b></dt>
5401
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5402
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5403
+ * {@link Error}s are rethrown as they are.</dd>
5400
5404
* </dl>
5401
5405
*
5402
5406
* @return the first item emitted by the current {@code Observable}
@@ -5425,6 +5429,10 @@ public final T blockingFirst() {
5425
5429
* <dl>
5426
5430
* <dt><b>Scheduler:</b></dt>
5427
5431
* <dd>{@code blockingFirst} does not operate by default on a particular {@link Scheduler}.</dd>
5432
+ * <dt><b>Error handling:</b></dt>
5433
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5434
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5435
+ * {@link Error}s are rethrown as they are.</dd>
5428
5436
* </dl>
5429
5437
*
5430
5438
* @param defaultItem
You can’t perform that action at this time.
0 commit comments