Akka Actor not terminating if an exception is thrown
The proper way to handle problems inside akka actors is not to throw an exception but rather to set supervisor hierarchies “Throwing an exception in concurrent code (let’s assume we are using non-linked actors), will just simply blow up the thread that currently executes the actor. There is no way to find out that things … Read more