also another important case of "MainThread corouti...
# coroutines
g
also another important case of "MainThread coroutine inside other dispathcer” Is when you want to get some data from UI thread:
Copy code
launch(CommonPool) {
   val login = run(MainThread) { userLoginView.text }
   val userProfile = api.getUserProfile(login)
}