rxjava-multiple-sources-sample icon indicating copy to clipboard operation
rxjava-multiple-sources-sample copied to clipboard

Sample code demonstrating loading multiple data sources via RxJava

Results 5 rxjava-multiple-sources-sample issues
Sort by recently updated
recently updated
newest added

hi can you please update the example to rxjava 2? rxjava 2 not supporting null so the logic is diffrent also please consider what happeing when there is error with...

Sorry if this is a little offtopic with the Repo contents. I'm coding an Android App, and I'm using the same pattern that you're using here to get stuff from...

For example from Local Data source have an item that has been stored from the previous network response, will it be eliminated when network data source have the same item.

Thanks. ``` Observable source = Observable.concat( sources.memory(), sources.disk(), sources.network() ) .first(data -> data != null && data.isUpToDate()); ``` I want to know when the `first()`'s condition is true, is there...

Thank you for writing this. It's really opening my mind as to what's possible with Rx. Since threading is a particularly difficult and under-documented part of Rx, I think it'd...