Introduction

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

You’ll next learn about actors in Swift Concurrency.

What are Actors?

An actor is a Swift type that allows thread-safe access to data. You can use actors to prevent state from being corrupted across different threads and to help prevent race conditions.

Learning Objectives

In this lesson, you’ll learn:

See forum comments
Download course materials from Github
Previous: Quiz: Structured Concurrency Next: Instruction