Reading List
Swift Proposal: Import Objective-C Completion Handler Parameters As @Sendable from Michael Tsai RSS feed.
Swift Proposal: Import Objective-C Completion Handler Parameters As @Sendable
SE-0463: The @Sendable annotation indicates that closure parameters are passed over an isolation boundary before they’re called. A missing @Sendable annotation in a library has negative effects on clients who call the function; the caller can unknowingly introduce data races, and SE-0423: Dynamic actor isolation enforcement from non-strict-concurrency contexts injects runtime assertions for non-Sendable closure […]