I am interested in writing 2 actor-based Scala applications, one of them needing to send data to another one running on the same machine at the same time. Is there a way to send actor messages between different Scala applications?

link|improve this question

70% accept rate
Possible duplicate of stackoverflow.com/questions/540906/scala-remote-actors – Sciss Nov 2 '11 at 20:20
feedback

2 Answers

Yes, there is. You should look at Akka, however, as it is much ahead of standard library actors for remote interaction. Besides, it is going to be merged into the standard library anyway.

With Akka, the example of how to do that is in the home page of the site.

link|improve this answer
"Besides, it is going to be merged into the standard library anyway." - how do you know that? – Ivan Nov 6 '11 at 22:32
@Ivan It's part of the official record. Akka is part of the Typesafe stack and it was already declared that Akka actors would be merged back into the standard library. – Daniel C. Sobral Nov 6 '11 at 22:54
Does this mean that today standard Scala actors will be deprecated then? – Ivan Nov 6 '11 at 23:02
@Ivan The word is that hey are going to be "merged", with the best of both being used. At any rate, Scala actors have not been deprecated, and I saw no more information than this. – Daniel C. Sobral Nov 6 '11 at 23:31
feedback

You should give Akka a try

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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