Advertisement
RemieHamillton

Untitled

May 27th, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.25 KB | None | 0 0
  1. suspend fun getData() {
  2.     withContext(ioDispatcher) {
  3.         someFun() {
  4.             anotherFun() // ойой, нельзя выполнять не в корутине!
  5.         }
  6.     }
  7. }
  8.  
  9. fun someFun(onSomeIvent: () -> Unit){
  10.     onSomeIvent()
  11. }
  12.  
  13. suspend fun anotherFun()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement