0
votes
1answer
80 views

Why is the loop portion of this loop react block not “looping” the way I expect?

I'm working on a homework assignment, modifying code created by my professor. Unfortunately, he's not available to me currently so I'm reaching out to the stackoverflow crowd. This snippet is from a ...
1
vote
3answers
324 views

Passing a value from one actor to another in scala

Can any of you please help me in understanding the basic message passing in scala using Actor Model? I'm trying to write a simple program with 3 actors. Actor "BossActor" creates 2 actors "Actor1" ...
2
votes
3answers
157 views

Is it possible to use 'react' to wait for a number of child actors to complete, then continue afterwards?

I'm getting all in a twist trying to get this to work. New to scala and to actors so may inadvertently be making bad design decisions - please tell me if so. The setup is this: I have a controlling ...
7
votes
1answer
700 views

Scala actors exception “react on channel belonging to other actor”

Given the following code: class A extends Actor { def act() { loop { reactWithin(1000) { case _ => println("A Message") } } } } and class B extends A { val ...