hi all, can you, guys, suggest me how to implement...
# android
d
hi all, can you, guys, suggest me how to implement following logic (using Realm) in the best way i need to have a lazy list of item, so should fetch data from db (Realm) and right after - from backend i do it like this:
Copy code
Observable.concat(dbObservable, serverObservable)
but the thing is that realm's observable has never called
onCompleted
so "stream" wouldn't go further.