Handling Actor Reentrancy Problem in Swift

Know how to safely run concurrent Swift code

Lee Kah Seng
Better Programming
Published in
6 min readSep 22, 2021

--

Photo by Mateusz Wacławek on Unsplash

When the first time I saw the WWDC presentation about actors, I was thrilled with what it is capable of and how it will change the way we write asynchronous code in the near future. By using actors, writing asynchronous code that is free from data races and deadlocks has never been easier.

--

--