[akka-user][deprecated] akka event adapter for a top level class in event hierarchy - using eventstore 4.0

2018-03-14 Thread abdeali
I am using akka 2.4 with eventstore 4.0.0.7 and I am new to event adapters I have a Old event known us UserEvent (Class) which has only one class member known as email. Now I am switching to username and therefore this event variable email changes to username. I have written a adapter to catc

[akka-user][deprecated] Akka persistence and internally stateless actors

2018-03-14 Thread Mark Kaberman
I am adding Akka persistence to my existing application. My actors are stateless: actor's implementations have no properties. An actor receives the message, analyzes it and either forwards it to another actor or persists some data (in MongoDB or RDF store). Since actors have no state there is

Re: [akka-user][deprecated] Akka persistence and internally stateless actors

2018-03-14 Thread Konrad “ktoso” Malawski
Hi Mark, Notice: This mailing list is going to be made read-only shortly, please ask new questions on the: https://discuss.akka.io forum (see footer of every email in this group for details). Akka Persistence is specifically designed for event-sourcing, and persisting Actor state. If you don’t do