python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why does a Task within a @MainActor not block the UI?
Today I refactored a ViewModel for a SwiftUI view to structured concurrency. It fires a network request and when the request comes back, updates a @Published property to update the UI. Since I use a T...
BlackWolf
Votes: 0
Answers: 1
Passing a local mutable struct into an async let binding
I want to create a URL request and pass it into an async let binding, which seems natural to me:
func test() async {
// Force unwraps (!) are just for demo
var request = URLRequest(url: URL(st...

FreeNickname
Votes: 0
Answers: 1
Is there a difference between using GlobalScope.launch and CoroutineScope().launch to launch a coroutine?
There are different ways of launching a coroutine in Kotlin. I found a couple of examples where GlobalScope and CoroutineScope are used. But the latter one is being created directly when launching a c...

Sergio
Votes: 0
Answers: 1