Assign Thread to Swift Concurrency Actor
I'm processing ~10k events between two different classes. One is fetching them, and the other is storing them in a dictionary. Now since the fetching class is also doing more stuff with the data than just passing it to the second class, it really doesn't make a lot of sense to send them over as a big bulk, but rather I'm processing them like
actor Fetcher {
let someProcessor = Processor()
func getData() async {
let results = await Rest.getData()
for result in results {...