Returns a Flowable that emits the items emitted from the current Maybe, then the other MaybeSource, one after the other, without interleaving them. <img width="640" height="172" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.concatWith
(@NonNull MaybeSource<? extends T> other)
| 3194 | * @see <a href="http://reactivex.io/documentation/operators/concat.html">ReactiveX operators documentation: Concat</a> |
| 3195 | */ |
| 3196 | @BackpressureSupport(BackpressureKind.FULL) |
| 3197 | @CheckReturnValue |
| 3198 | @NonNull |
| 3199 | @SchedulerSupport(SchedulerSupport.NONE) |
| 3200 | public final Flowable<T> concatWith(@NonNull MaybeSource<? extends T> other) { |
| 3201 | Objects.requireNonNull(other, "other is null"); |
| 3202 | return concat(this, other); |
| 3203 | } |
| 3204 | |
| 3205 | /** |
| 3206 | * Returns a {@link Single} that emits a {@link Boolean} that indicates whether the current {@code Maybe} emitted a |