Deferred Value Design Pattern
Learn how to implement the Deferred Value design pattern in Kotlin.
We'll cover the following...
The goal of the Deferred Value design pattern is to return a reference to a result of an asynchronous computation. A Future in Java and Scala, and a Promise in JavaScript are both implementations of the Deferred Value design pattern.
Interestingly enough, the Deferred Value itself is an implementation of both the Proxy design pattern and the State design pattern. ...