February 11, 2024 Daniel Gallego concurrency Actors Actors are one of the new features of Concurrency in Swift, and their main purpose is to solve one of the most common problems when dealing with concurrent operations: mutating… Read More
February 9, 2024 Daniel Gallego concurrency Task group The Task Group is a part of the new modern concurrency framework, and it allows us to run multiple asynchronous operations in parallel. In this previous article, we explored how… Read More