Kotlin Coroutines: Fundamentals

Feb 14 2024 · Kotlin 1.9, Android 13, Android Studio Giraffe

Part 2: Deep Dive into Coroutines

05. Understand Coroutine Context & Dispatchers

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 04. Challenge: Implement a Coroutine Calling Suspend Function Next episode: 06. Use Coroutine Builders: launch, async, runBlocking

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

In this episode you’ll learn about the coroutine context and dispatchers.

CoroutineScope(dispatcher).launch {
    
}
CoroutineScope(dispatcher).launch {
    repeat(100) { index ->
        launch {

        }
    }
}
CoroutineScope(dispatcher).launch {
  repeat(100) { index ->
      launch {
          Log.d("Running coroutine #$index", Thread.currentThread().name)
          delay(10.milliseconds)
      }
  }
}
CoroutineScope(Dispatchers.IO).launch {
  repeat(100) { index ->
    Log.d("Launching coroutine #$index", Thread.currentThread().name)
    launch {
      delay(10.milliseconds)
      withContext(Dispatchers.Main) {
        Log.d("Running coroutine #$index", Thread.currentThread().name)
      }
    }
  }
}