@@ -5416,6 +5416,10 @@ public final <R> R as(@NonNull FlowableConverter<T, ? extends R> converter) {
5416
5416
* (i.e., no backpressure applied to it).</dd>
5417
5417
* <dt><b>Scheduler:</b></dt>
5418
5418
* <dd>{@code blockingFirst} does not operate by default on a particular {@link Scheduler}.</dd>
5419
+ * <dt><b>Error handling:</b></dt>
5420
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5421
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5422
+ * {@link Error}s are rethrown as they are.</dd>
5419
5423
* </dl>
5420
5424
*
5421
5425
* @return the first item emitted by this {@code Flowable}
@@ -5445,6 +5449,10 @@ public final T blockingFirst() {
5445
5449
* (i.e., no backpressure applied to it).</dd>
5446
5450
* <dt><b>Scheduler:</b></dt>
5447
5451
* <dd>{@code blockingFirst} does not operate by default on a particular {@link Scheduler}.</dd>
5452
+ * <dt><b>Error handling:</b></dt>
5453
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5454
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5455
+ * {@link Error}s are rethrown as they are.</dd>
5448
5456
* </dl>
5449
5457
*
5450
5458
* @param defaultItem
@@ -5484,6 +5492,10 @@ public final T blockingFirst(T defaultItem) {
5484
5492
* (i.e., no backpressure applied to it).</dd>
5485
5493
* <dt><b>Scheduler:</b></dt>
5486
5494
* <dd>{@code blockingForEach} does not operate by default on a particular {@link Scheduler}.</dd>
5495
+ * <dt><b>Error handling:</b></dt>
5496
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5497
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5498
+ * {@link Error}s are rethrown as they are.</dd>
5487
5499
* </dl>
5488
5500
*
5489
5501
* @param onNext
@@ -5566,6 +5578,10 @@ public final Iterable<T> blockingIterable(int bufferSize) {
5566
5578
* (i.e., no backpressure applied to it).</dd>
5567
5579
* <dt><b>Scheduler:</b></dt>
5568
5580
* <dd>{@code blockingLast} does not operate by default on a particular {@link Scheduler}.</dd>
5581
+ * <dt><b>Error handling:</b></dt>
5582
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5583
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5584
+ * {@link Error}s are rethrown as they are.</dd>
5569
5585
* </dl>
5570
5586
*
5571
5587
* @return the last item emitted by this {@code Flowable}
@@ -5597,6 +5613,10 @@ public final T blockingLast() {
5597
5613
* (i.e., no backpressure applied to it).</dd>
5598
5614
* <dt><b>Scheduler:</b></dt>
5599
5615
* <dd>{@code blockingLast} does not operate by default on a particular {@link Scheduler}.</dd>
5616
+ * <dt><b>Error handling:</b></dt>
5617
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5618
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5619
+ * {@link Error}s are rethrown as they are.</dd>
5600
5620
* </dl>
5601
5621
*
5602
5622
* @param defaultItem
@@ -5704,6 +5724,10 @@ public final Iterable<T> blockingNext() {
5704
5724
* (i.e., no backpressure applied to it).</dd>
5705
5725
* <dt><b>Scheduler:</b></dt>
5706
5726
* <dd>{@code blockingSingle} does not operate by default on a particular {@link Scheduler}.</dd>
5727
+ * <dt><b>Error handling:</b></dt>
5728
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5729
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5730
+ * {@link Error}s are rethrown as they are.</dd>
5707
5731
* </dl>
5708
5732
*
5709
5733
* @return the single item emitted by this {@code Flowable}
@@ -5728,6 +5752,10 @@ public final T blockingSingle() {
5728
5752
* (i.e., no backpressure applied to it).</dd>
5729
5753
* <dt><b>Scheduler:</b></dt>
5730
5754
* <dd>{@code blockingSingle} does not operate by default on a particular {@link Scheduler}.</dd>
5755
+ * <dt><b>Error handling:</b></dt>
5756
+ * <dd>If the source signals an error, the operator wraps a checked {@link Exception}
5757
+ * into {@link RuntimeException} and throws that. Otherwise, {@code RuntimeException}s and
5758
+ * {@link Error}s are rethrown as they are.</dd>
5731
5759
* </dl>
5732
5760
*
5733
5761
* @param defaultItem
0 commit comments