我在github上引用项目来编写我自己的代码 https://github.com/AlbertGrobas/Leaderboards 但仍然发现一些问题。 在“LeaderboardDataService”类中:
public Observable<Leaderboard> getLeaderboard(final String bracket, final boolean forceUpdate) {
final Observable<RealmLeaderboard> apiObservable = mClient.getApiClient().leaderboardObservable(bracket, Locale.getDefault().toString());
final Observable<RealmLeaderboard> dbObservable = mDAO.readLeaderboard(mHost, bracket);
return dbObservable.exists(new Func1<RealmLeaderboard, Boolean>() {
@Override
@DebugLog
public Boolean call(RealmLeaderboard leaderboard) {
return (leaderboard != null);
}
}).flatMap(new Func1<Boolean, Observable<RealmLeaderboard>>() {
@Override
@DebugLog
public Observable<RealmLeaderboard> call(Boolean inDB) {
return (inDB && !forceUpdate) ? dbObservable : apiObservable;
}
}).flatMap(new Func1<RealmLeaderboard, Observable<RealmLeaderboard>>() {
@Override
@DebugLog
public Observable<RealmLeaderboard> call(RealmLeaderboard leaderboard) {
if (leaderboard.getHost() == null) {
leaderboard.setBracket(bracket);
leaderboard.setHost(mHost);
}
return mDAO.writeLeaderboard(leaderboard, forceUpdate);
}
}).map(new Func1<RealmLeaderboard, Leaderboard>() {
@Override
@DebugLog
public Leaderboard call(RealmLeaderboard leaderboard) {
return realmToLeaderboard(leaderboard);
}
}); }
此功能用于确定从何处获取数据, 本地或网络。 有两个问题。 1.第一个存在判断数据是否存在于领域的功能。 只返回一个布尔值,如果领域得到数据,则需要再次查询, 如果那里的领域是空的,从网上获取数据是没有问题的。 2.在下一步中,如果数据来自net,则更新现有数据是正常的, 但如果数据来自领域,则无需更新这些数据。 该操作对来自领域的数据毫无用处。
我对该功能进行了一些修改:
public Observable<List<ChhPost>> getPosts(final boolean forceUpdate) {
final String path = "getpostdata";
final Observable<RealmList<ChhPost>> apiObservable = getApiService().getApiClient().posts(path);
final Observable<RealmList<ChhPost>> dbObservable = getObservableDAO().readPosts();
return dbObservable.flatMap(new Func1<RealmList<ChhPost>, Observable<RealmList<ChhPost>>>() {
@Override
public Observable<RealmList<ChhPost>> call(final RealmList<ChhPost> chhPosts) {
boolean valid = chhPosts!=null && chhPosts.size()>0;
if(valid && !forceUpdate){
Observable<RealmList<ChhPost>> postsObservable = Observable.create(new Observable.OnSubscribe<RealmList<ChhPost>>() {
@Override
public void call(Subscriber<? super RealmList<ChhPost>> subscriber) {
subscriber.onNext(chhPosts);
subscriber.onCompleted();
}
});
return postsObservable;
}else{
return apiObservable;
}
}
}).flatMap(new Func1<RealmList<ChhPost>, Observable<RealmList<ChhPost>>>() {
@Override
public Observable<RealmList<ChhPost>> call(RealmList<ChhPost> topics) {
Loge.d("getPosts write to Db");
return mDAO.writePosts(topics, forceUpdate);
}
}).map(new Func1<RealmList<ChhPost>, List<ChhPost>>() {
@Override
public List<ChhPost> call(RealmList<ChhPost> topics) {
List<ChhPost> newTopics = new ArrayList<>();
for (ChhPost topic : topics) {
newTopics.add(topic);
}
return newTopics;
}
});
}
第一个问题似乎已经解决了,但第二个问题仍然存在。 做了一些研究,Rx onNext函数只能有一个参数。 在这种情况下,我传递了我自己的类的RealmList。 该类是领域的模板类,用于获取数据的改造。
问题是如何让写入域函数知道 数据来自领域或改造,以避免无用的操作。
答案 0 :(得分:0)
您可以使用RealmList.isValid()
如果数据不是由Realm管理,则会返回false:https://realm.io/docs/java/latest/api/io/realm/RealmList.html#isValid--
当前的Javadoc有点不对,我们将得到修复:)