Executing rx.Obseravables secuentially
问题 I'm developing an Android App using Fernando Ceja's clean architecture. One of my Interactors or Use Cases is in charge of getting the User's feed data. In order to get the data, first I have to retrieve the User's Teams from a database table and then I have to get the Feed list from the server-side. This is how I get the Teams from the database layer: mTeamCache.getAllTeams().subscribe(new DefaultSubscriber<List<SimpleTeam>>() { @Override public void onNext(List<SimpleTeam> simpleTeams) {