【发布时间】:2016-08-29 07:27:00
【问题描述】:
问题听起来与之前提出的问题相似。我已经提到了这些,但找不到解决我遇到的这个问题的方法。
private AddCartItemDialog.CartItemListener cartItemListener = new AddCartItemDialog.CartItemListener() {
@Override
public void onOkClick(Product cartItem, int quantity) {
realm.executeTransactionAsync(new Realm.Transaction() {
@Override
public void execute(Realm bgRealm) {
DraftInvoice draftInvoice = bgRealm.where(DraftInvoice.class).equalTo("shop.id", shopId).findFirst();
InvoiceItem invoiceItem = bgRealm.createObject(InvoiceItem.class);
invoiceItem.setPrice(cartItem.getPrice());
invoiceItem.setId(cartItem.getId());
invoiceItem.setQuantity(quantity);
invoiceItem.calculateTotal();
draftInvoice.getInvoiceItems().add(invoiceItem);
updateCartItemCount(draftInvoice.getInvoiceItems().size());
}
}, () -> {
}, error -> {
error.printStackTrace();
Logger.e(error.getMessage());
});
}
@Override
public void onCancelClick() {
}
};
错误日志显示以下错误 -
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: java.lang.IllegalStateException: Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created.
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at io.realm.BaseRealm.checkIfValid(BaseRealm.java:449)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at io.realm.ProductRealmProxy.realmGet$price(ProductRealmProxy.java:159)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at com.example.realshoptest.models.Product.getPrice(Product.java:75)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at com.example.realshoptest.NewInvoiceActivity$1$1.execute(NewInvoiceActivity.java:76)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at io.realm.Realm$1.run(Realm.java:1187)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at io.realm.internal.async.BgPriorityRunnable.run(BgPriorityRunnable.java:34)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:422)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
08-28 15:10:25.214 4996-4996/com.example.realshoptest W/System.err: at java.lang.Thread.run(Thread.java:818)
08-28 15:10:25.214 4996-4996/com.example.realshoptest E/TestShopApp: Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created.
此行发生错误 - invoiceItem.setPrice(cartItem.getPrice());
根据我的理解,这段代码似乎可以工作,但因为我在同一个线程中异步访问对象,所以它不起作用。我在这里错过了什么?
【问题讨论】:
-
您正在访问 cartItem
-
@TimCastelijns 是的,谢谢您的指出。如何将
cartItem传递给对话框,更新其数量并将其返回到侦听器中? -
传递 id 并查询执行块内的对象
标签: android thread-safety realm