When should I use an actor?

Generated on 3/31/2025

1 search

Actors in Swift are used to encapsulate shared mutable state and automatically protect it by serializing accesses. This means that only a single task is allowed to execute at a time on an actor, and calls to actor methods from outside the context of the actor are asynchronous. This makes actors particularly useful when you need to ensure data-race safety in concurrent programming. For example, if you have a global variable that is accessed from different concurrency domains, making it an actor can help synchronize accesses and eliminate concurrency-related errors.

Actors are similar to classes in that they are reference types, but they provide the added benefit of managing concurrency for you. This is especially useful in scenarios where you might otherwise have to manually add synchronization to ensure thread safety.

For more details, you can refer to the session A Swift Tour: Explore Swift’s features and design (21:38) where actors are discussed in the context of Swift's concurrency model.

Meet TabletopKit for visionOS

Meet TabletopKit for visionOS

Build a board game for visionOS from scratch using TabletopKit. We’ll show you how to set up your game, add powerful rendering using RealityKit, and enable multiplayer using spatial Personas in FaceTime with only a few extra lines of code.

Design interactive experiences for visionOS

Design interactive experiences for visionOS

Learn how you can design a compelling interactive narrative experience for Apple Vision Pro from the designers of Encounter Dinosaurs. Discover how these types of experiences differ from existing apps, media, and games, and explore how to design narratives that bring audiences into new worlds. Find out how you can create stories that adapt to any space and size, provide multiple levels of interaction to make them accessible to all, and use animation, spatial audio, and custom gestures to further immerse people in your experience.

A Swift Tour: Explore Swift’s features and design

A Swift Tour: Explore Swift’s features and design

Learn the essential features and design philosophy of the Swift programming language. We’ll explore how to model data, handle errors, use protocols, write concurrent code, and more while building up a Swift package that has a library, an HTTP server, and a command line client. Whether you’re just beginning your Swift journey or have been with us from the start, this talk will help you get the most out of the language.

Compose interactive 3D content in Reality Composer Pro

Compose interactive 3D content in Reality Composer Pro

Discover how the Timeline view in Reality Composer Pro can bring your 3D content to life. Learn how to create an animated story in which characters and objects interact with each other and the world around them using inverse kinematics, blend shapes, and skeletal poses. We’ll also show you how to use built-in and custom actions, sequence your actions, apply triggers, and implement natural movements.

Migrate your app to Swift 6

Migrate your app to Swift 6

Experience Swift 6 migration in action as we update an existing sample app. Learn how to migrate incrementally, module by module, and how the compiler helps you identify code that’s at risk of data races. Discover different techniques for ensuring clear isolation boundaries and eliminating concurrent access to shared mutable state.