With actors I can write something like that:
val echo = system.actorOf("someActorName")
echo ! "hello world"
expectMsg("hello world")
But how I can intercept messages which are replicated to persistence view?
With actors I can write something like that:
val echo = system.actorOf("someActorName")
echo ! "hello world"
expectMsg("hello world")
But how I can intercept messages which are replicated to persistence view?