Re: [akka-user] Anticipating Akka Persistence

2014-11-13 Thread Martynas Mickevičius
Hi Richard, I think you have already noticed but your second proposal would not block (stashing is not blocking, but it has same semantics in a sense that no useful work can be done by an actor that is stashing) while persisting state to DB. Akka-persistence handles failure by sending Persistence

[akka-user] Anticipating Akka Persistence

2014-11-10 Thread Richard Rodseth
It must be frustrating for the Akka team to field questions when the solutions will be so much more elegant with Akka Persistence and Reactive Streams :) I have an aggregate which needs to respond to events by updating its own persistent state (using Slick) and firing a domain event. I believe th