1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Concurrency in Swift by Apple (#6004)

Updated styling and copy.

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Timofey Veretnov
2024-07-02 19:20:05 +07:00
committed by GitHub
parent de6aaa262b
commit 10ac77308d

View File

@@ -1 +1,8 @@
# Concurrency # Concurrency
Swift's concurrency model centers on async/await syntax, allowing asynchronous code to be written in a clear, sequential manner. It employs actors to manage shared mutable state safely, and the Task API for handling concurrent work. Structured concurrency ensures proper task lifecycle management. The language also offers async sequences and streams for working with asynchronous data, and the Sendable protocol to guarantee thread-safe data sharing. This comprehensive approach enables developers to write efficient, safe concurrent code while minimizing common issues like race conditions and deadlocks.
Learn more from the following resources:
- [@official@Swift Documentation (How to interact)](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/concurrency/)
- [@official@Apple Documentation (Signatures for interaction)](https://developer.apple.com/documentation/swift/concurrency)
- [@article@Concurrency bu Example](https://www.hackingwithswift.com/quick-start/concurrency)