Sure. api.getUsers() gives me my own object called...
# rx
b
Sure. api.getUsers() gives me my own object called
Observable<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