In rxjava 1 there Observable had this flatmap method
public final Observable flatMap(Func1 collectionSelector, Func2 resultSelector)
That allowed you to pass/combine the initial result to the flatmap subscriber.
How can I achieve the same result with RxJava2?
I have a Single that emits A, I need to get B based on A and then use both A and B to perform an action.