Prevent ROOM live data crash

This commit is contained in:
M66B
2021-12-21 10:03:16 +01:00
parent f7d6dc55a2
commit 1cd74d08df
2 changed files with 21 additions and 28 deletions

View File

@@ -85,20 +85,19 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
try {
T value = null;
while (mInvalid.compareAndSet(true, false)) {
computed = true;
int retry = 0;
boolean done = false;
while (!done) {
while (!computed) {
try {
value = mComputeFunction.call();
done = true;
computed = true;
} catch (Throwable e) {
if (++retry > 10)
throw new RuntimeException(
"Exception while computing database live data.", e);
if (++retry > 5) {
eu.faircode.email.Log.e(e);
break;
}
eu.faircode.email.Log.w(e);
try {
Thread.sleep(3000L);
Thread.sleep(2000L);
} catch (InterruptedException ignored) {
}
}
@@ -136,7 +135,6 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
}
}
};
@SuppressLint("RestrictedApi")
RoomTrackingLiveData(
RoomDatabase database,