android – 随着时间的推移在服务器上更改数据的存储库模式
作者:互联网
我正在关注由着名的Robert C. Martin提出的清洁建筑.清洁建筑的鸟瞰图如下所示:
但是现在我关注Repository模式修改.存储库模式的基础步骤是:
- Search in-memory cache AND provide data to app layer
- If not found, search local data source AND sync to in-memory cache AND provide data to app layer
- If not found, search remote data source AND sync to local data source AND provide data to app layer
严格按照上述步骤操作,如果本地数据源中存在数据,则远程数据源中的数据可能永远不会从远程数据源同步.如何进行修改以便处理此案例?我想到了一个想法,但我希望找到一个更好的解决方案.
我的想法是跟踪本地数据库中每条记录的上次同步时间.如果上次同步时间超过阈值时间,则自动同步.
解决方法:
在RxJava的帮助下,您的想法符合我们正在使用的内容:
Dan Lew nicely explained at
标签:android,repository-pattern,restful-architecture,data-layer,clean-architecture 来源: https://codeday.me/bug/20190710/1428399.html