Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Kotlin Coroutines - New Ways to Do Asynchronous Programming
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 async and await are functions defined in the standard library
- 3 Example: simple consecutive logic
- 4 Rewrite with suspend functions
- 5 Coroutine builders
- 6 Simple "load image" example
- 7 async creates a new coroutine: starts a new asynchronous computation
- 8 Call stack of a coroutine
- 9 Specify the context
- 10 Structural concurrency
- 11 Two asynchronous coroutines
- 12 Problem: leaking coroutine
- 13 Enforcing structure
- 14 Types of Channels
- 15 "Rendezvous" channel semantics
- 16 Suspended coroutine