uhe
10/12/2016, 10:10 AMscheduler.after(30.seconds) {
onMainThread {
view?.updateFoo()
}
}
3. If the presenters trigger backend stuff in the model, it kind of depends on your architecture. If you're using EventBus you could use ThreadMode.MAIN. If you're using Rx you could use main thread schedulers.