-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Closed
Description
Is there already a name for something in the ecosystem that is like an eager concatMap, or ordered flatMap?
I often see the pattern of people wanting to eagerly kick off several Observables, but merge them together in order.
It is absolutely not a good idea for infinite lists, but similar to how concatMap
and flatMap
can both be dangerous if used wrong, an eagerConcatMap
that eagerly subscribes and caches the inner Observable
s could be useful.
Of course this can be done without adding anything to RxJava, it's just tedious.
Bad idea? Does it already have a name that I'm unaware of?