Returns a Flowable which first runs the other CompletableSource then the current Flowable if the other completed normally. Ba
(@NonNull CompletableSource other)
| 15761 | * @since 3.0.0 |
| 15762 | */ |
| 15763 | @CheckReturnValue |
| 15764 | @NonNull |
| 15765 | @SchedulerSupport(SchedulerSupport.NONE) |
| 15766 | @BackpressureSupport(BackpressureKind.FULL) |
| 15767 | public final Flowable<T> startWith(@NonNull CompletableSource other) { |
| 15768 | Objects.requireNonNull(other, "other is null"); |
| 15769 | return Flowable.concat(Completable.wrap(other).<T>toFlowable(), this); |
| 15770 | } |
| 15771 | |
| 15772 | /** |
| 15773 | * Returns a {@code Flowable} which first runs the other {@link SingleSource} |
nothing calls this directly
no test coverage detected