Tagged Questions
0
votes
1answer
62 views
Akka tutorial code does not run
The tutorial code from
http://doc.akka.io/docs/akka/2.0.2/intro/getting-started-first-java.html
Will not run. I have imported the required libraries but get the error:
Exception in thread "main" ...
2
votes
4answers
5k views
How can I use Akka Actors in a Java application?
I would like to use Akka actors in Java.
I downloaded the akka-1.0.zip and added akka-actor-1.0.jar to my "Build Path" in Eclipse.
Then I wrote this Actor class:
package com.example;
import ...