Slide 12
Slide 12 text
async-await
• async-await adapts futures into the imperative programming style
• Functions created by sequences of statements
• On async functions, an await converts a Future into a V, without blocking
• Increasing popularity
• Available in C#, Javascript, Python, Dart, ...
• Instead of async-await, Kotlin uses a different (yet related) concept
Coroutines