Returns a Flowable which first runs the other CompletableSource then the current Single if the other completed normally. Backpr
(@NonNull CompletableSource other)
| 4584 | * @since 3.0.0 |
| 4585 | */ |
| 4586 | @CheckReturnValue |
| 4587 | @NonNull |
| 4588 | @SchedulerSupport(SchedulerSupport.NONE) |
| 4589 | @BackpressureSupport(BackpressureKind.FULL) |
| 4590 | public final Flowable<T> startWith(@NonNull CompletableSource other) { |
| 4591 | Objects.requireNonNull(other, "other is null"); |
| 4592 | return Flowable.concat(Completable.wrap(other).<T>toFlowable(), toFlowable()); |
| 4593 | } |
| 4594 | |
| 4595 | /** |
| 4596 | * Returns a {@link Flowable} which first runs the other {@link SingleSource} |
nothing calls this directly
no test coverage detected