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

Method concatWith

src/main/java/io/reactivex/rxjava3/core/Single.java:2785–2791  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

startWithMethod · 0.45

Calls 1

concatMethod · 0.95

Tested by

no test coverage detected