Re: [akka-user] Supervisor strategy with futures within child actor

2016-08-19 Thread Justin du coeur
This is true, and unsurprising when you think about it: Futures run outside the thread context of the Actor. This is why it's so important to *not* change the Actor's state in a mapped callback from the Future. The Exception in the Future isn't in the Actor's call stack, so it can't be caught

[akka-user] Supervisor strategy with futures within child actor

2016-08-19 Thread Marcel Koopman
It seems that the supervision doesnt react on exceptions within futures. For example http requests return futures, how do i escalate any exceptions to my guardian/parent actor? -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >>