Josh Bartz

Results 2 comments of Josh Bartz

I've tried this: ``` fun getAllItemsRX(userUUID: String): Flowable = (select from Item::class where Iteml_Table.userUUID.eq(userUUID)) .rx() .observeOnTableChanges() .observeOn(Schedulers.io()) .map { it.queryList() } ``` And only get results when initially subscribing, not...

I've tried a few things. Kotlin extensions `item.save()` and `item.insert()`. ` FlowManager.getModelAdapter(Item::class.java).save(item)`. I've tried each of those inside and outside of transactions.