Understanding Swift Concurrency
In Swift 5.5, Apple has added support for writing asynchronous and parallel code in a structured way.
Asynchronous code allows your app to suspend and resume code. This allows your app to do things like update the user interface while still performing operations like downloading data from the internet.
Parallel code allows your app to run multiple pieces of code simultaneously.
Important Information
You can find links to all of Apple's Swift Concurrency videos during WWDC2021 at https://developer.apple.com/news/?id=2o3euotz.
You can read Apple's Swift Concurrency documentation at https://docs.swift.org/swift-book/LanguageGuide/Concurrency.html.
To give you an idea of how Swift Concurrency works, imagine that you are making a poached egg sandwich for breakfast. Here is one way of doing it:
- Put two slices of bread into the toaster.
- Wait two minutes until the bread is toasted.
- Put an egg in a bowl with some...