我是新手MVVM architecture
,我只想知道如何在和之间进行通信repository class
。UI (activity/fragment) class
我遇到了正在做这项工作以进行更新的实时数据same entities from both (remote and room database)
。
例如:1)如果我有名为用户的实体。我可以使用如下实时数据保存并观察它:(来自 android 开发者网站)。
public class UserRepository {
private final Webservice webservice;
private final UserDao userDao;
private final Executor executor;
@Inject
public UserRepository(Webservice webservice, UserDao userDao, Executor executor) {
this.webservice = webservice;
this.userDao = userDao;
this.executor = executor;
}
public LiveData<User> getUser(String userId) {
refreshUser(userId);
// Returns a LiveData object directly from the database.
return userDao.load(userId);
}
private void refreshUser(final String userId) {
// Runs in a background thread.
executor.execute(() -> {
// Check if user data was fetched recently.
boolean userExists = userDao.hasUser(FRESH_TIMEOUT);
if (!userExists) {
// Refreshes the data.
Response<User> response = webservice.getUser(userId).execute();
// Check for errors here.
// Updates the database. The LiveData object automatically
// refreshes, so we don't need to do anything else here.
userDao.save(response.body());
}
});
}
}
2)但是我们如何在不需要实时数据但我只想显示或隐藏进度对话框的其他 API 中做到这一点(登录)取决于网络成功或错误消息。
public void isVerifiedUser(int userId){
executor.execute(() -> {
// making request to server for verifying user
Response<User> response = webservice.getVerifyUser(userId).execute();
// how to update the UI like for success or error.
//update the progress dialog also in UI class
});
}