我第一次与Room一起工作,请注意,似乎在完成操作时似乎没有任何回调。是否存在?如果不是,插入或更新数据然后立即检索该数据的最佳实践是什么。我要保证所做的更改。我注意到,除非在检索数据之前有任意延迟,否则获取的是旧数据而不是更新数据。
这是DAO的示例
@Dao
public interface TestDao {
@Query("SELECT * FROM test_table")
List<TestEntity> getAll();
@Query("DELETE FROM test_table")
void deleteAll();
@Insert
void insert(TestEntity testEntities);
@Delete
void delete(TestEntity testEntity);
@Update
void update(TestEntity testEntity);
}
这是我的AppDatabase
@Database(entities = {TestEntity.class}, version = 1, exportSchema = false)
public abstract class AppDatabase extends RoomDatabase {
private static final String DATABASE_NAME = "room.test.db";
private static AppDatabase APP_DATABASE_INSTANCE;
public abstract TestDao testDao();
public static AppDatabase getAppdatabase(@NonNull Context context) {
if (FrameworkUtils.checkIfNull(APP_DATABASE_INSTANCE)) {
APP_DATABASE_INSTANCE = Room.databaseBuilder(context.getApplicationContext(),
AppDatabase.class, DATABASE_NAME).build();
}
return APP_DATABASE_INSTANCE;
}
/**
* Method is used to destroy database instance
*/
public static void destroy() {
APP_DATABASE_INSTANCE = null;
}
}
这是我执行更新的方式
Thread t = new Thread(new Runnable() {
@Override
public void run() {
// update database tables
AppDatabase.getAppdatabase(context).testDao().update(testEntity);
}
});
这是我检索数据的方式
Thread t = new Thread(new Runnable() {
@Override
public void run() {
// get database data
List<TestEntity> alData = AppDatabase.getAppdatabase(context).testDao().getAll();
}
});
我为此代码创建了函数,以便可以调用update(testEntity)和get()。问题是我无法执行背靠背操作
TestEntity testEntity = new TestEntity();
testEntity.fname = "firstName"
testEntity.lname = "lastName"
update(testEntity);
get(); // the data fetched is old data unless I wrap this with a 5 second delay or something
答案 0 :(得分:1)
您应该使用LiveData<List<Entity>>
(从Dao返回),而不是列表本身。这样,您可以观察实时数据并在基础数据每次更新时得到警报
文档可在此处找到:https://developer.android.com/topic/libraries/architecture/livedata