Separated core from modules, moved modules to akka-modules repository

This commit is contained in:
Jonas Bonér 2010-11-23 15:31:28 +01:00
parent 7f0358277b
commit f97d04f1b7
306 changed files with 5 additions and 25602 deletions

View file

@ -1,73 +0,0 @@
package akka.spring.foo;
import akka.actor.UntypedActor;
import akka.actor.ActorRef;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import java.util.concurrent.CountDownLatch;
/**
* test class
*/
public class PingActor extends UntypedActor implements ApplicationContextAware {
private String stringFromVal;
private String stringFromRef;
public static String lastMessage = null;
public static CountDownLatch latch = new CountDownLatch(1);
private boolean gotApplicationContext = false;
public void setApplicationContext(ApplicationContext context) {
gotApplicationContext = true;
}
public boolean gotApplicationContext() {
return gotApplicationContext;
}
public String getStringFromVal() {
return stringFromVal;
}
public void setStringFromVal(String s) {
stringFromVal = s;
}
public String getStringFromRef() {
return stringFromRef;
}
public void setStringFromRef(String s) {
stringFromRef = s;
}
private String longRunning() {
try {
Thread.sleep(6000);
} catch (InterruptedException e) {
}
return "this took long";
}
public void onReceive(Object message) throws Exception {
if (message instanceof String) {
lastMessage = (String) message;
if (message.equals("longRunning")) {
ActorRef pongActor = UntypedActor.actorOf(PongActor.class).start();
pongActor.sendRequestReply("longRunning", getContext());
}
latch.countDown();
} else {
throw new IllegalArgumentException("Unknown message: " + message);
}
}
}