``` override fun onStart() { super.onStart(...
# coroutines
p
Copy code
override fun onStart() {
       super.onStart()

       launch { contentSelectionPresenter.getAvailableContent() }
   }
and whatever is within the launch block will be in a CommonPool thread and can be suspend fun
🧵 2
l
CommonPool is long deprecated and now removed from public API. We use
Dispcthers.Default
since coroutines are stable.
p
deprecated 8 months ago
hmmm