<@U4TQ4104X> I think your approach is not the best...
# coroutines
g
@krenvpravo I think your approach is not the best one, you should do instead
Copy code
launch(BACKGROUND) {
  val data = getMyLongComputation()
  run(UI) { view.updateData(data) }
}
but I honestly don’t know why you’re getting race conditions