I'm currently testing remote actors on Android. I have done a small program with two classes: the first implements the main activity and the second implements an actor.
When I create my actor, the program is killed with this message : stack overflow on call to Ljava/lang/throwable... for some reason, the stack of the program seems to be too small (or there is some kind of bug) during the execution of the line 3 of my second class (as shown below).
This is the code of my second class:
class Person(ip : String, port : Int) extends Actor{
val node = Node(ip, port)
var server = select(node, 'myName) // <'----- program crashes here
def act(){
while(true){
receive {
case Post(msg) => //do something
case Stop => exit()
}
}
}
}
Does anyboy know a solution for this error or any idea or have any experience on running remote actors on Android ?
thanks