I assume that the messages will be received and processed in a threadsafe manner. However, I have been reading (some) akka/scala docs but I didn't encounter the keyword 'threadsafe' yet.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

It is probably because the actor model assumes that each actor instance processes its own mailbox sequentially. That means it should never happen, that two or more concurrent threads execute single actor instance's code. Technically you could create a method in an actor's class (because it is still an object) and call it from multiple threads concurrently, but this would be a major departure from the actor's usage rules and you would do it "at your own risk", because then you would lose all thread-safety guarantees of that model.

This is also one of the reasons, why Akka introduced a concept of ActorRef - a handle, that lets you communicate with the actor through message passing, but not by calling its methods directly.

link|improve this answer
Thanks Przemek. That explains. – Asad Iqbal Oct 14 '11 at 21:15
feedback

I think we have it pretty well documented: http://akka.io/docs/akka/1.2/general/jmm.html

link|improve this answer
I read that document multiple times. I am a JVM newbie; in my understanding, a 'happens before' only substantiates 'visibility'. We can still have issues due to multiple threads in critical section. – Asad Iqbal Oct 14 '11 at 21:25
1  
Akka safeguards against executing messages for the same actor at the same time by only ever allowing the mailbox to be scheduled for execution once. (either it's scheduled for execution or it's not). By making the Mailbox Runnable not only do we avoid allocating new runnables, but we also can, via a simple CAS operation, ensure that a mailbox is only ever scheduled for execution once, which means no extra book-keeping required to make sure that 2 threads do not process the same mailbox at the same time. – Viktor Klang Oct 14 '11 at 22:31
Awesome explanation. This will surely help me in further reading. One question though, how could I have deduced the 'mutually exclusive processing' of mailbox from akka.io/docs/akka/1.2/general/jmm.html? – Asad Iqbal Oct 14 '11 at 23:05
Akka Actors wouldn't be actors if they allowed multiple execution. ;-) – Viktor Klang Oct 15 '11 at 13:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.