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
February 12, 2023 Daniel Gallego Combine Combine: key operators to know Combine contains a long list of operators which are great to know. While all of them are useful and can help you, I am going to focus on 4 operators… Read More
January 22, 2023 Daniel Gallego Combine 1 Combine basics: types of Publishers Just A publisher that emits an output to each subscriber just once and then finishes. Generic only over the output since can not fail. let justPublisher = Just<String>("one value") //Just.init(<#T##output:… Read More