Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in swift-concurrency

Swift: Conform Older Protocols to MainActor Isolation?

How to execute a CPU-bound task in background using Swift Concurrency without blocking UI updates?

Why are nested tasks not canceled when they parent task is cancelled?

swift swift-concurrency

How come a MainActor isolated mutable stored property gives a sendable error?

swift swift-concurrency

Make tasks in Swift concurrency run serially

Recurring function in Swift 5.5 using async/await

Swift: how to wrap `completion` into an async/await?

Swift 5.5 Concurrency: how to serialize async Tasks to replace an OperationQueue with maxConcurrentOperationCount = 1?

How do I load metadata from an AVAsset into a SwiftUI View without compiler warnings?

Swift default init behaving differently than empty init

can't implement UIView `description` because it isn't MainActor

swift swift-concurrency

Swift Concurrency: error vs warning when accessing main actor-isolated function in closure

swift swift-concurrency

Swift 6: Capture of 'self' with non-sendable type in a @Sendable closure

How to properly cancel Swift async/await function

Swift 5.5 concurrency: Are scheduled Tasks serial to one another

Is CurrentValueSubject thread safe?

Get rid of warning: Passing argument of non-sendable type 'AVAssetExportSession' outside of main actor-isolated context may introduce data races

UI Update not triggered on Main Thread despite @MainActor annotation

Swift Concurrency: Combine TaskGroup and AsyncStream?