Modern Concurrency on Apple Platforms: Using Async/Await with Swift Kautsch Andrs Ibaez
Modern Concurrency on Apple Platforms: Using Async/Await with Swift Kautsch Andrs Ibaez Build solid software with modern and safe concurrency features. For years, computer scientists and engineers…
Specifikacia Modern Concurrency on Apple Platforms: Using Async/Await with Swift Kautsch Andrs Ibaez
Modern Concurrency on Apple Platforms: Using Async/Await with Swift Kautsch Andrs Ibaez
Build solid software with modern and safe concurrency features. For years, computer scientists and engineers have developed different strategies for dealing with concurrency. Concurrency is one of the hardest problems in computer science.
This will allow you to write concurrent code that is easier to read, easier to write, and easier to maintain. However, the original concurrency primitives are complicated and difficult to understand, and even harder to implement.Using the new async/await APIs in Swift, this book will explain how your code can abstract a lot of the complexity with a simpler interface so you never have to deal with concurrency primitives such as semaphores, locks, and threads yourself. These new APIs are deeply ingrained into Swift, offering compile-level features that will keep you from writing dangerous concurrent code.You'll start by exploring why