Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in swift-concurrency

UI Update not triggered on Main Thread despite @MainActor annotation

Swift Concurrency: Combine TaskGroup and AsyncStream?

How to avoid deadlock / hang when using SwiftData and @Observable?

Swift Concurrency - Why my Task didn't inherit the parent Task's executor and priority

swift swift-concurrency

Swift code suspension point in asynchronous & synchronous code

Split up Task into multiple concurrent subtasks

Conforming an actor to Sequence protocol

Mutually cancelling Tasks

swift swift-concurrency

Understanding Task{ } behaviour in iOS Swift Concurrency

swift swift-concurrency

How to check if the current task is cancelled in Swift Tasks (async/await)

Convert the async Throwing Expression to a Result

swift swift-concurrency

Swift Concurrency capturing self weakly in actor

Swift 6 concurrency issue with EnvironmentKey

How to access an actor-isolated property

What is the correct way to await the completion of two Tasks in Swift 5.5 in a function that does not support concurrency?

How do I initialize a global variable with @MainActor?

swift swift-concurrency

Is there a difference between "@MainActor in" and "MainActor.run"?

swift swift-concurrency

How to constrain concurrency (like `maxConcurrentOperationCount`) with Swift Concurrency?

Store a reference to a TaskGroup or add to it outside of scope

What's difference btw DispatchQueue.global(qos: .background).async {} and Task(priority: .background) {} in Swift