Returns a Maybe that is based on applying a specified function to the item emitted by the current Single, where that function returns a MaybeSource. <img width="640" height="254" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concatMapMaybe.p
(@NonNull Function<? super T, ? extends MaybeSource<? extends R>> mapper)
| 2757 | * @since 3.0.0 |
| 2758 | */ |
| 2759 | @CheckReturnValue |
| 2760 | @NonNull |
| 2761 | @SchedulerSupport(SchedulerSupport.NONE) |
| 2762 | public final <@NonNull R> Maybe<R> concatMapMaybe(@NonNull Function<? super T, ? extends MaybeSource<? extends R>> mapper) { |
| 2763 | return flatMapMaybe(mapper); |
| 2764 | } |
| 2765 | |
| 2766 | /** |
| 2767 | * Returns a {@link Flowable} that emits the item emitted by the current {@code Single}, then the item emitted by the |