I am fairly new to Scala. I am trying to understand how/if scala does dynamic binding when a closure is passed as part of a message to an Actor.

I am using Akka 1.2 with Scala 2.9.

I have the following code segment (modified from http://gleichmann.wordpress.com/2010/11/15/functional-scala-closures/)

var minAge = 18
val isAdult = (age: Int) => age >= minAge

actor ! answer(19, isAdult) 
minAge = 20
actor ! answer(19, isAdult)

On the actor side, it simply applies isAdult to the first parameter and prints the result. Since Scala uses dynamic binding (so I was told), I would have expected

true
false

but somehow the result is

false
false

So is it true that scala is binding the variable statically and taking 18 as the value of minAge for both answer messages? Is there a way to keep the dynamic binding behavior while using closures in messages?

Thanks!

link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

Your understanding of closures is correct. It is doing dynamic binding however you are introducing concurrency issues. The closure is binding to mutable data which makes the closure mutable. The actor model only solves concurrency issues when you pass strictly immutable data between actors. You may write it in a seemingly chronological order but the actor scheduler changes the order of events. And since isAdult is mutable the reordering changes the results.

actor ! answer(19, isAdult) // message put in actor queue
minAge = 20
actor ! answer(19, isAdult) // message put in actor queue
// later...
// actor handles answer(19, isAdult)
// actor handles answer(19, isAdult)
link|improve this answer
Thanks! This makes sense. So isAdult is lazily evaluated and variables are never bound until the actor actually handles the message.. It seems that if I had waited for a reply from my first query before running minAge = 20, I get the result I expect. – royalflush Dec 9 '11 at 9:44
2  
That is correct, but please remember never to do that ;-) Seriously, you wouldn’t be using actors if you wanted to share mutable state between them. Unfortunately, Scala does not provide a way to close “by-value”, so the only thing you can do is manually ensure that everything you close over is a val. – Roland Kuhn Dec 9 '11 at 22:57
I think that argument is true on a single machine case. but with remote actors, why not? I can send a message to synchronize a distributed state between two actors for example? – royalflush Dec 10 '11 at 18:16
feedback

Your Answer

 
or
required, but never shown

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