I need to make two requests for services and combine it results:
ServiceA() => [{\"id\":1,\"name\":\"title\"},{\"id\":1,\"name\":\"title\"}]
[{\"id\":1,\"name\":\"title\"},{\"id\":1,\"name\":\"title\"}]
S
The operator you are looking for is flatMap()
flatMap()
serviceA.getAllGeneros("movie","list","da0d692f7f62a1dc687580f79dc1e6a0") .flatMap(genres -> serviceB.getAllMovies(genres.getId() ......))