Combination of RxJava and RxAndroid?
问题 My Scenario is very similar to this Image: Flow of the app will be like this: View needs to get updated. Create an observable using RxAndroid to fetch the data from cache / local file. update the view. Make another network call using Retrofit and RxJava to update the view again with new data coming from the web services. Update the local file with the new data. So, I am updating the view twice(One from local file and just after that through webservices) How can I achieve the result using