MCPcopy Index your code
hub / github.com/ReactiveX/RxJava / concatWith

Method concatWith

src/main/java/io/reactivex/rxjava3/core/Maybe.java:3196–3203  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

startWithMethod · 0.45

Calls 1

concatMethod · 0.95

Tested by

no test coverage detected