Skip to content

santimattius/kotlin-coroutines

Repository files navigation

Kotlin Coroutines with Examples

Coroutine note project, include example, reference to documentation.

Topics:

Coroutines

Asynchronous or non-blocking programming is an important part of the development landscape. When creating server-side, desktop, or mobile applications, it's important to provide an experience that is not only fluid from the user's perspective, but also scalable when needed. Kotlin solves this problem in a flexible way by providing coroutine support at the language level and delegating most of the functionality to libraries. In addition to opening the doors to asynchronous programming, coroutines also provide a wealth of other possibilities, such as concurrency and actors.

How to start

New to Kotlin? Take a look at the Getting started page.

Documentation

Tutorials

Sample projects

Check full documentation here

References

Talks

Documentation

Posts

Roman Elizarov (Project Lead for the Kotlin Programming Language)

Mindorks