Fixed
Status Update
Comments
yb...@google.com <yb...@google.com> #2
we may need to disable this or show a warning if return type is a observable.
not sure if there is any case it would be useful when @Transaction is set on a non-abstract method.
not sure if there is any case it would be useful when @Transaction is set on a non-abstract method.
[Deleted User] <[Deleted User]> #3
Just hit this problem. Was receiving empty lists and not sure why. By the docs:
* If the query is an async query (e.g. returns a {@link androidx.lifecycle.LiveData LiveData}
* or RxJava Flowable, the transaction is properly handled when the query is run, not when the
* method is called.
I thought it would handle Completable properly. Seems like it will always have to be a sync method?
* If the query is an async query (e.g. returns a {@link androidx.lifecycle.LiveData LiveData}
* or RxJava Flowable, the transaction is properly handled when the query is run, not when the
* method is called.
I thought it would handle Completable properly. Seems like it will always have to be a sync method?
yb...@google.com <yb...@google.com> #4
it works when room is the one generating the query, i assume you also have a method with implementation ?
[Deleted User] <[Deleted User]> #5
Yeah, it does have implementation.
@Transaction
open fun setBanners(banners: List<BannerEntity>) {
return Completable.fromAction { deleteAll() }
.andThen(insert(banners))
}
@Transaction
open fun setBanners(banners: List<BannerEntity>) {
return Completable.fromAction { deleteAll() }
.andThen(insert(banners))
}
yb...@google.com <yb...@google.com> #6
yea i don't think we can reasonably do this since we don't know how many thread hops you'll do inside and android transactions are thread confined.
so it is probably best if we show an error if someone has this case rather than silently failing.
so it is probably best if we show an error if someone has this case rather than silently failing.
ap...@google.com <ap...@google.com> #7
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 9b78b58d3758e84a5c4a26c812e1164076552e3e
Author: Daniel Santiago Rivera <danysantiago@google.com>
Date: Tue Jan 15 13:10:58 2019
Disallow @Transaction implementations with async return types.
Since we cannot reasonably defer begin and end transactions in a
implemented DAO method that returns an async type then throw an error
if such method is detected.
Bug: 120109336
Test: ./gradlew room:room-compiler:test
Change-Id: Ifa1bf55cc736ad7c4735043e5b8bac6cd7954ab7
M room/compiler/src/main/kotlin/androidx/room/processor/ProcessorErrors.kt
M room/compiler/src/main/kotlin/androidx/room/processor/TransactionMethodProcessor.kt
M room/compiler/src/test/kotlin/androidx/room/processor/TransactionMethodProcessorTest.kt
https://android-review.googlesource.com/873033
https://goto.google.com/android-sha1/9b78b58d3758e84a5c4a26c812e1164076552e3e
Branch: androidx-master-dev
commit 9b78b58d3758e84a5c4a26c812e1164076552e3e
Author: Daniel Santiago Rivera <danysantiago@google.com>
Date: Tue Jan 15 13:10:58 2019
Disallow @Transaction implementations with async return types.
Since we cannot reasonably defer begin and end transactions in a
implemented DAO method that returns an async type then throw an error
if such method is detected.
Bug: 120109336
Test: ./gradlew room:room-compiler:test
Change-Id: Ifa1bf55cc736ad7c4735043e5b8bac6cd7954ab7
M room/compiler/src/main/kotlin/androidx/room/processor/ProcessorErrors.kt
M room/compiler/src/main/kotlin/androidx/room/processor/TransactionMethodProcessor.kt
M room/compiler/src/test/kotlin/androidx/room/processor/TransactionMethodProcessorTest.kt
Description
Version used: 2.0.0
Devices/Android versions reproduced on: N/A
In current version of room if I mark method in DAO with @Transaction, and if it uses any disposable e.g. Single, the generated code will throw main thread access exception at runtime.
I would expect one of two behaviours instead:
1. It would be ideal if room could somehow defer start/end transaction to match thread that is used on Disposable, but I can imagine that this can be not possible.
2. To get compile time warning or error that this may be not the correct way of using @Transaction with mix of asynchronous code.
Example of code:
Method in abstract DAO:
@Transaction
open fun upsert(obj: T): Single<Boolean> {
return insert(obj)
.map { true }
.onErrorResumeNext {
if (it is SQLiteConstraintException)
{ update(obj)
.map { true }
} else {
Single.error(it) }
}
.subscribeOn(Schedulers.io()) }
Generated method:
@Override
public Single<Boolean> upsert(Supplier obj) {
__db.beginTransaction();
try {
Single<Boolean> _result = super.upsert(obj);
__db.setTransactionSuccessful();
return _result;
} finally {
__db.endTransaction();
}
}