The supervisor strategy comes into play when a child actor throws an exception. That is not something that happens automatically because of a ask timeout. Normally you use ask together with pipeTo and then you will receive a akka.actor.Status.Failure message with the exception cause. Note that this is a message, and you have to actively throw the cause to trigger supervision action.
Regards, Patrik On Sat, Sep 12, 2015 at 10:32 PM, Sergey Sopin <[email protected]> wrote: > Workflow is following: > > > <https://lh3.googleusercontent.com/-2NQ3uKBGhc4/VfSL1PLrg0I/AAAAAAAAAXk/O2bNmf2pVkk/s1600/Flow.jpg> > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Patrik Nordwall Typesafe <http://typesafe.com/> - Reactive apps on the JVM Twitter: @patriknw -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
