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

Method concatMapSingle

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

Returns a Maybe based on applying a specified function to the item emitted by the current Maybe, where that function returns a Single. When this Maybe just completes the resulting Maybe completes as well. <img width="640" height="315" src="https://raw.gith

(@NonNull Function<? super T, ? extends SingleSource<? extends R>> mapper)

Source from the content-addressed store, hash-verified

3169 * @since 3.0.0
3170 */
3171 @CheckReturnValue
3172 @NonNull
3173 @SchedulerSupport(SchedulerSupport.NONE)
3174 public final <@NonNull R> Maybe<R> concatMapSingle(@NonNull Function<? super T, ? extends SingleSource<? extends R>> mapper) {
3175 return flatMapSingle(mapper);
3176 }
3177
3178 /**
3179 * Returns a {@link Flowable} that emits the items emitted from the current {@code Maybe}, then the {@code other} {@link MaybeSource}, one after

Callers 15

setupMethod · 0.45
setupMethod · 0.45
disposeMethod · 0.45
applyMethod · 0.45
singleErrorsMethod · 0.45
simpleMethod · 0.45

Calls 1

flatMapSingleMethod · 0.95

Tested by 15

disposeMethod · 0.36
applyMethod · 0.36
singleErrorsMethod · 0.36
simpleMethod · 0.36
simpleLongPrefetchMethod · 0.36