Returns a Flowable that emits the item emitted by the current Single, then the item emitted by the specified SingleSource. Ba
(@NonNull SingleSource<? extends T> other)
| 2783 | * @see <a href="http://reactivex.io/documentation/operators/concat.html">ReactiveX operators documentation: Concat</a> |
| 2784 | */ |
| 2785 | @BackpressureSupport(BackpressureKind.FULL) |
| 2786 | @CheckReturnValue |
| 2787 | @SchedulerSupport(SchedulerSupport.NONE) |
| 2788 | @NonNull |
| 2789 | public final Flowable<T> concatWith(@NonNull SingleSource<? extends T> other) { |
| 2790 | return concat(this, other); |
| 2791 | } |
| 2792 | |
| 2793 | /** |
| 2794 | * Delays the emission of the success signal from the current {@code Single} by the specified amount. |