The Eventsourced library in fact implements command-sourcing, and this difference is relevant to this question: in Akka Persistence you can attach multiple Views to a single EventsourcedProcessor (soon to be renamed PersistentActor as we remove the distinction between command- and event-sourcing), and once Akka Streams are ready you will be able to subscribe to event replays (i.e. user activity streams in your case) directly. Therefore the answer is that the Multicast pattern is not needed in Akka Persistence.
Regards, Roland 3 jun 2014 kl. 17:43 skrev Night Wolf <[email protected]>: > Are there any plans to bring the EventSourced Multicast processor pattern to > the new Akka Persistence? > > https://github.com/eligosource/eventsourced#multicast-processor > > While not hard to bring this pattern across (it is just an implementation > optimization) are there any plans currently (we have a SQL backend and find > that something like this would be very advantageous, especially when using it > for things like user activity streams)? > > If there are no plans would anyone else find moving this pattern to Akka > Persistence as a contrib useful? > > Cheers, > NW > > -- > >>>>>>>>>> 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. Dr. Roland Kuhn Akka Tech Lead Typesafe – Reactive apps on the JVM. twitter: @rolandkuhn -- >>>>>>>>>> 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.
