Hi! Nobody answers at <#C01B7QWL18U|sqldelight> ch...
# squarelibraries
p
Hi! Nobody answers at #sqldelight channel. I'll try to ask here.
a
you would need to more tightly control the rxjava threading to essentially be syncronous. SQLDelight can only guarantee that at some point you will have the latest version of the data set.
i think you could make it syncronous like this:
Copy code
queries.selectStatus(1)
            .asObservable(Schedulers.trampoline())
p
Yes,
Copy code
.asObservable(Schedulers.trampoline())
works. Thank you very much!