Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package org.greenrobot.greendao.async;
import org.greenrobot.greendao.DaoException;
/* loaded from: classes2.dex */
public class AsyncDaoException extends DaoException {
private static final long serialVersionUID = 5872157552005102382L;
private final AsyncOperation failedOperation;
public AsyncDaoException(AsyncOperation asyncOperation, Throwable th) {
super(th);
this.failedOperation = asyncOperation;
}
public AsyncOperation getFailedOperation() {
return this.failedOperation;
}
}

View File

@@ -0,0 +1,30 @@
package org.greenrobot.greendao.async;
/* loaded from: classes2.dex */
public class AsyncOperation {
public enum OperationType {
Insert,
InsertInTxIterable,
InsertInTxArray,
InsertOrReplace,
InsertOrReplaceInTxIterable,
InsertOrReplaceInTxArray,
Update,
UpdateInTxIterable,
UpdateInTxArray,
Delete,
DeleteInTxIterable,
DeleteInTxArray,
DeleteByKey,
DeleteAll,
TransactionRunnable,
TransactionCallable,
QueryList,
QueryUnique,
Load,
LoadAll,
Count,
Refresh
}
}