Reading List

Swift Concurrency: Waiting for Async Work from Michael Tsai RSS feed.

Swift Concurrency: Waiting for Async Work

David Smith: A common point of confusion in Swift Concurrency turns out to actually not be unique to Swift at all: “why can’t you synchronously wait for future async work?”If you block a thread in your thread pool waiting, a core goes idle, but another one runs the work and unblocks it; not too awful.What […]