Hi, I'm kind of new to Akka, and am using its Java API only. I have a question regarding using Event Sourcing with reliable communications between Actors:
I understand that 1) UntypedEventsourcedProcessor cannot receive Persistent messages 2) In order to send a message reliably to another actor, UntypedEventSourcedProcessors need to use a Channel 3) Channels only work with Persistent Messages So does that mean that an UntypedEventSourcedProcessor cannot reliably send a message to another UntypedEventSourcedProcessor? I imagined an actor system where most of my actors would be UntypedEventSourcedProcessor, so that they can be restarted in case of a crash, and have their internal state restored without executing operations with side effects. But maybe I misunderstood something and it does not make sense? Thanks, R1 -- >>>>>>>>>> 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.
