blakelee
07/26/2017, 6:54 AMObservable<List<UserUnfilteredList>>
I'm using the flatMap to get one of the elements in that list. On each of those elements I do another thing, getUserByLogin
which makes another network call and returns a user. The problem I'm having is that I think the flatMap is giving me the list of items 30 times, in which case the Observable.fromIterable
is processing it another 30 times