Martin, let me figure out a empale to make my point.

Suppose my app is a trading platform, it has two memory based models - 
account balances (M1), and pending orders (M2).  The 
deposit/withdraw/createOrder commands shall be handled by M1, lets say 
after processing a 'crateOrder' event, it reduced the account balance, and 
then sent a 'OrderCreated' event to M2 for updating pending order set.  On 
the order hand, cancelOrder commands are handled by M2 directly and after 
an order is cancelled, M2 needs to send an event to M1 to increase the 
balance (in case an order doesn't exist, no event is ever persisted).

In such a use case, both M1 and M2 shall be Eventsourced processors, and 
I'd like them to work together. Does this make any sense?

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: http://akka.io/faq/
>>>>>>>>>>      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/groups/opt_out.

Reply via email to