Swift Concurrency Under the Hood - iOS Conf SG 2022

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ต.ค. 2024
  • Speaker: Marin Todorov
    By now you've at least heard about async/await and the new concurrency model in Swift or even better used those in a project. Hopefully so, because a working knowledge will be required for this session to make sense. With the help of the Apple docs, we'll look at synchronous vs asynchronous context, how does the cooperative thread pool manifest itself and, finally, what's with actors?
    About the Speaker:
    Marin Todorov is a developer, speaker, and author. He works for high-profile clients most often doing Swift development. Besides crafting code, he enjoys blogging, writing books, teaching, and speaking. He sometimes open sources his code.
    Event URL: iosconf.sg

ความคิดเห็น • 2

  • @anamigator
    @anamigator 2 ปีที่แล้ว +12

    Very helpful video but may be “under the hood” is the wrong title ? I was expecting to see what happens at the operating system level. This video is perhaps more like a swift concurrency advanced topics or swift concurrency concepts that are generally looked over

  • @alxkub
    @alxkub ปีที่แล้ว

    How liming the number of threads in pool by the number of CPU cores is a good idea? A bunch of long running computational tasks may completely block other (potentially short) tasks from executing? Also one may want to use some old-style blocking I/O calls and that will also lead to problems…