that doesn't seem to work for me. When I just call...
# rx
t
that doesn't seem to work for me. When I just call
subscribe
without any
observeOn
, the app crashes with "views can only be touched on the main thread", telling me that at least one emission didn't execute on the thread where I called
subscribe
(the main thread). Wouldn't all emissions execute on the thread where
onNext
was called on the BehaviourSubject if I don't specifiy a scheduler? How would Rx be able to move it back to my thread without having a scheduler 😕