AndyIbanez / andyibanez-com

Static website.
1 stars 0 forks source link

posts/introduction-to-unstructured-concurrency-in-swift/ #39

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Introduction to Unstructured Concurrency in Swift • Andy Ibanez

https://www.andyibanez.com/posts/introduction-to-unstructured-concurrency-in-swift/

dave256 commented 2 years ago

Thanks for these articles! Just working through them and I think I noticed a minor typo: “For these cases, we can leverage unstructured concurrency which will give us more control over the asks,” - I think the last word should be tasks.

marcvanolmen commented 2 years ago

There are a few cases where the deprecated syntax of:

async {
}

is used instead of task, for example

 async {
            if let imageDetail = try? await downloadImageAndMetadata(imageNumber: 1) {
                print("Image downloaded")
            }
        }

and

downloadAndShowTask = async {
        do {
Mahmoud-Abdelwahab commented 1 year ago

Big Thanks , this is a really awesome series of article about concurrency i have ever seen ❤️🚀