RXJavaSupport
Last updated
Was this helpful?
Was this helpful?
(select
from MyTable::class)
.async(db) { d -> queryList(d) }
.execute { _, r ->}(select
from MyTable::class)
.async(db) { d -> queryList(d) }
.asSingle()
.subscribeBy { list ->
// use list
}(select
from MyTable::class)
.asFlowable { db -> queryList(db) }
.subscribeBy { list ->
// use list
}Person(5, "Andrew Grosner")
.rxInsert(db) // rxSave, rxUpdate, etc.
.subscribeBy { rowId ->
}(select from TestModel::class)
.queryStreamResults(db)
.subscribeBy { model ->
}