...

/

Scheduler Design Pattern

Scheduler Design Pattern

Learn how to implement the Scheduler design pattern in Kotlin.

We'll cover the following...

The goal of the Scheduler design pattern is to decouple what is being run from how it’s being run and optimize the use of resources when doing so.

In Kotlin, dispatchers are an implementation of the Scheduler design pattern that decouple the coroutine (that is, the what) from underlying ...