Returns a Flowable which first runs the other CompletableSource then the current Maybe if the other completed normally. Backpres
(@NonNull CompletableSource other)
| 5109 | * @since 3.0.0 |
| 5110 | */ |
| 5111 | @CheckReturnValue |
| 5112 | @NonNull |
| 5113 | @SchedulerSupport(SchedulerSupport.NONE) |
| 5114 | @BackpressureSupport(BackpressureKind.FULL) |
| 5115 | public final Flowable<T> startWith(@NonNull CompletableSource other) { |
| 5116 | Objects.requireNonNull(other, "other is null"); |
| 5117 | return Flowable.concat(Completable.wrap(other).<T>toFlowable(), toFlowable()); |
| 5118 | } |
| 5119 | |
| 5120 | /** |
| 5121 | * Returns a {@link Flowable} which first runs the other {@link SingleSource} |