Introduction to Coroutines in Kotlin
Explore the fundamentals of Kotlin coroutines, including suspension points, thread control, and continuations. Understand how to create non-blocking asynchronous code and debug coroutines. This lesson prepares you to build high-performance concurrent applications using Kotlin's coroutine features.
We'll cover the following...
We'll cover the following...
Coroutines, a more recent addition to the language, are one of the most exciting features of Kotlin. Coroutines are built on the powerful concept of continuations and form the foundation for concurrent and asynchronous programming. In this part, you’ll learn about suspension points and how to alter the thread and sequence of execution of code. Then you’ll readily apply the ...