Is it not recommended to modify and read individual properties in an actor instance?

In the session, it was said that "While actors are great for protecting encapsulated state, we want to modify and read individual properties on our state machine, so actors aren't quite the right tool for this." Could you elaborate it a little more? Is it not recommended to modify and read individual properties in an actor instance?

Replies

I think they want to say, that a state machine that is implemented as an actor and used within another actor is not a good fit.

See https://swiftsenpai.com/swift/actor-reentrancy-problem/