List all async await related sessions

Asked on 09/25/2024

1 search

Here are the sessions related to async await from the WWDC 2024:

  1. A Swift Tour: Explore Swift’s features and design

    • This session covers the basics of writing concurrent code in Swift, including tasks, async await, and actors. It provides an overview of how async await syntax is used in Swift to handle asynchronous operations. You can find more details in the Concurrency chapter.
  2. Explore Swift performance

    • This session delves into the implementation details of async functions in Swift, explaining how they manage memory and suspension points. It provides insights into the performance aspects of async functions. The relevant discussion can be found in the Async functions chapter.
  3. Go further with Swift Testing

    • This session discusses techniques for waiting on asynchronous conditions in Swift testing, using the same concurrency features as in production code. The relevant information is in the Asynchronous conditions chapter.

These sessions provide a comprehensive look at async await in Swift, covering both the language features and their application in testing and performance optimization.