I’m trying to shutdown a very simple akka 1.2 remote actors with the Java API like this:
public static void main(String[] args) {
Actors.remote().start("localhost", 2552);
Actors.registry().shutdownAll();
}
But the JVM isn’t terminated because of some threads still hang out.
The reason is simple: you did not stop the remote module.
This will properly stop everything.