understanding threadedness of actors in scala
问题 I've been told that (Scala) Actors never actually perform two operations at the same time, which suggests that the act (or react? or receive?) method is inherently synchronized. I know a long operation in an act method can cause blocking issues, and I assume that access to the message queue must be synchronized in some way... but... What was suggested is that an actor receiving messages telling it to increment an internal counter would increment the counter in a threadsafe way. That no two