Skip to content
#

coroutines

Here are 4,800 public repositories matching this topic...

Structured concurrency is a programming paradigm that emphasizes the use of scopes to manage the lifecycle of asynchronous tasks. When you launch a coroutine within a scope, it becomes a child of that scope, and when the scope is cancelled or completes, all of its child coroutines are cancelled as well.

  • Updated May 14, 2023
  • Kotlin

Parallel decomposition is a technique used in software development to speed up the execution of a program by splitting it into smaller, independent parts that can be executed concurrently. In Kotlin, this can be achieved using coroutines, which provide an easy and efficient way to write asynchronous and non-blocking code.

  • Updated May 13, 2023
  • Kotlin

Improve this page

Add a description, image, and links to the coroutines topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the coroutines topic, visit your repo's landing page and select "manage topics."

Learn more