December 27, 2023 Daniel Gallego Combine, concurrency Bridge Async Await, Delegates, Combine and Completion blocks Async await introduces a simpler approach to concurrency, so even in ongoing projects, it's a good idea to incorporate async await syntax. However, instead of adding async await throughout the… Read More
December 18, 2023 Daniel Gallego concurrency Async Sequence Another great feature new modern concurrency is offering us is async sequences. Async sequence is similar to the regular sequence types we have in Swift but adds asynchronous code. We… Read More