Hello all, One of the main parts of the Swift Concurrency model is actors, which provide a mechanism for isolating state in concurrent programs to eliminate data races. This proposal introduces actors and actor isolation into Swift. It is part of the Swift Concurrency effort detailed in the roadmap thread. This post has a subset of the proposal. The latest, full version of the proposal is always available here. Doug Actors Introduction The actor model involves entities called actors. Each ac...