Initial commit
This commit is contained in:
18
sources/org/greenrobot/greendao/async/AsyncDaoException.java
Normal file
18
sources/org/greenrobot/greendao/async/AsyncDaoException.java
Normal 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;
|
||||
}
|
||||
}
|
30
sources/org/greenrobot/greendao/async/AsyncOperation.java
Normal file
30
sources/org/greenrobot/greendao/async/AsyncOperation.java
Normal 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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user