vote up 2 vote down star

Are there any guides or tutorials which explain the possibility to use scala actors remotely? All I have found until now is one example (without comments) but that's hardly enough.

flag

3 Answers

vote up 2 vote down check

I have written an article with an example app to explain the use of Remote Actors a bit some time ago.

Well, it has no comments inside the code (maybe you even meant that article), but there are explanations below the code.

link|flag
1  
There is another new example based on my code but simpler and it sets the classpath manually which avoids problems: youshottheinvisibleswordsman.co.uk/2009/04/… – dmeister Apr 11 at 16:55
dmeister what happened to you blog? – Alexander Stolz Jun 16 at 7:28
vote up 1 vote down

Just be careful to send messages that are serializable (case classes and case objects are!) and be sure the opposite side can create the class. Watch out for custom ClassLoaders or missing JARs in you classpaths.

link|flag
vote up 1 vote down

None of which I am aware. It's pretty much a "hack your way through the jungle" approach. Judging from the API though, things should work pretty much the same as regular actors, for which there exist one or two tutorials (as well as a few books now).

If you do make use of remote actors, we (the community) would certainly welcome such a tutorial from an experienced user!

link|flag

Your Answer

Get an OpenID
or

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