Hi Leslie, On Tue, Jul 14, 2015 at 3:34 PM, <[email protected]> wrote:
> I see. > So no happy path programming while not loosing the error case with > reactive streams? This is a quite a bit disillusioning. Should be mentioned > in all those shiny reactive stream presentations ;-) > It's mentioned all the time afaik, onError is for out-of-band stream teardown, onComplete is in-band stream teardown. If one wants to track transient errors, the solution is to be honest about it and do it in the element type using something like Either or Try. > > Is there some per stream exception handling mechanism instead which would > materialize with the stream? > I know the supervision/decider mechanism which is unfortunately per > materializer or per stage. > Leslie > > -- > >>>>>>>>>> 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. > -- Cheers, √ -- >>>>>>>>>> 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.
