2014-04-16 08:42:32 +02:00
|
|
|
package sample.hello;
|
|
|
|
|
|
|
|
|
|
import akka.actor.*;
|
|
|
|
|
import akka.japi.pf.ReceiveBuilder;
|
|
|
|
|
|
|
|
|
|
public class Main2 {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
ActorSystem system = ActorSystem.create("Hello");
|
|
|
|
|
ActorRef a = system.actorOf(Props.create(HelloWorld.class), "helloWorld");
|
|
|
|
|
system.actorOf(Props.create(Terminator.class, a), "terminator");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class Terminator extends AbstractLoggingActor {
|
|
|
|
|
|
|
|
|
|
private final ActorRef ref;
|
|
|
|
|
|
|
|
|
|
public Terminator(ActorRef ref) {
|
|
|
|
|
this.ref = ref;
|
|
|
|
|
getContext().watch(ref);
|
|
|
|
|
receive(ReceiveBuilder.
|
|
|
|
|
match(Terminated.class, t -> {
|
|
|
|
|
log().info("{} has terminated, shutting down system", ref.path());
|
2014-08-25 15:49:28 +02:00
|
|
|
context().system().terminate();
|
2014-04-16 08:42:32 +02:00
|
|
|
}).build());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|