I have recently watched several videos about ES and CQRS models as well as I have watched few talks about AKKA persistence. I know what they are about but I have issues writing actual code that will execute.
I have few questions though. How should i make view and event stack communicate? Will events be passed between view and persistent actor of same persistence id passed? What are persistent actor and view responsible for according to the model?
Edit: Where should i place my business logic? According to model i should do that in write, but what if i need to check something in read to validate cmd?